Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: Source/bindings/core/v8/V8MutationCallback.h

Issue 1236473002: Fix virtual/override/final usage in Source/bindings/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/core/v8/V8LazyEventListener.h ('k') | Source/bindings/core/v8/V8NodeFilterCondition.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « Source/bindings/core/v8/V8LazyEventListener.h ('k') | Source/bindings/core/v8/V8NodeFilterCondition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698