File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,9 +53,9 @@ class Platform : public v8::Platform {
5353 virtual ~Platform () override ;
5454
5555 void CallOnBackgroundThread (v8::Task* task,
56- ExpectedRuntime expected_runtime);
57- void CallOnForegroundThread (v8::Isolate* isolate, v8::Task* task);
58- double MonotonicallyIncreasingTime ();
56+ ExpectedRuntime expected_runtime) override ;
57+ void CallOnForegroundThread (v8::Isolate* isolate, v8::Task* task) override ;
58+ double MonotonicallyIncreasingTime () override ;
5959
6060 protected:
6161 static void WorkerBody (void * arg);
Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ class ExternString: public ResourceType {
3232 isolate ()->AdjustAmountOfExternalAllocatedMemory (change_in_bytes);
3333 }
3434
35- const TypeName* data () const {
35+ const TypeName* data () const override {
3636 return data_;
3737 }
3838
39- size_t length () const {
39+ size_t length () const override {
4040 return length_;
4141 }
4242
You can’t perform that action at this time.
0 commit comments