| Index: Source/bindings/core/v8/V8MutationCallback.h
|
| diff --git a/Source/bindings/core/v8/V8MutationCallback.h b/Source/bindings/core/v8/V8MutationCallback.h
|
| index 4ba0bbf61ab8a40adc34eb8e636cf8db5bc089aa..9d3dcbfbaac1a406be14f553bfc7e3a6c3290ab6 100644
|
| --- a/Source/bindings/core/v8/V8MutationCallback.h
|
| +++ b/Source/bindings/core/v8/V8MutationCallback.h
|
| @@ -45,10 +45,10 @@ public:
|
| {
|
| return adoptPtrWillBeNoop(new V8MutationCallback(callback, owner, scriptState));
|
| }
|
| - virtual ~V8MutationCallback();
|
| + ~V8MutationCallback() override;
|
|
|
| - virtual void call(const WillBeHeapVector<RefPtrWillBeMember<MutationRecord>>&, MutationObserver*) override;
|
| - virtual ExecutionContext* executionContext() const override { return ContextLifecycleObserver::executionContext(); }
|
| + void call(const WillBeHeapVector<RefPtrWillBeMember<MutationRecord>>&, MutationObserver*) override;
|
| + ExecutionContext* executionContext() const override { return ContextLifecycleObserver::executionContext(); }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|