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

Unified Diff: Source/bindings/core/v8/V8NodeFilterCondition.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/V8MutationCallback.h ('k') | Source/bindings/core/v8/V8ScriptRunnerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8NodeFilterCondition.h
diff --git a/Source/bindings/core/v8/V8NodeFilterCondition.h b/Source/bindings/core/v8/V8NodeFilterCondition.h
index 54d3de69012dd895485d4e5f3dd40b00610f9bfd..f82e3d512bae4ee00c1b1039ed71caca367fa6e1 100644
--- a/Source/bindings/core/v8/V8NodeFilterCondition.h
+++ b/Source/bindings/core/v8/V8NodeFilterCondition.h
@@ -67,9 +67,9 @@ public:
return adoptRefWillBeNoop(new V8NodeFilterCondition(filter, owner, scriptState));
}
- virtual ~V8NodeFilterCondition();
+ ~V8NodeFilterCondition() override;
- virtual unsigned acceptNode(Node*, ExceptionState&) const override;
+ unsigned acceptNode(Node*, ExceptionState&) const override;
private:
// As the value |filter| is maintained by V8GC, the |owner| which references
« no previous file with comments | « Source/bindings/core/v8/V8MutationCallback.h ('k') | Source/bindings/core/v8/V8ScriptRunnerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698