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

Unified Diff: Source/core/dom/StaticNodeList.h

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (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/core/dom/ScriptableDocumentParser.h ('k') | Source/core/dom/StringCallback.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/StaticNodeList.h
diff --git a/Source/core/dom/StaticNodeList.h b/Source/core/dom/StaticNodeList.h
index ad5e7d412f18c3b1b2228cc46cd32188512cc6dc..a1bebef8ce823ce2461f7379320c41b7e52614a6 100644
--- a/Source/core/dom/StaticNodeList.h
+++ b/Source/core/dom/StaticNodeList.h
@@ -50,10 +50,10 @@ public:
return adoptRefWillBeNoop(new StaticNodeTypeList);
}
- virtual ~StaticNodeTypeList();
+ ~StaticNodeTypeList() override;
- virtual unsigned length() const override;
- virtual NodeType* item(unsigned index) const override;
+ unsigned length() const override;
+ NodeType* item(unsigned index) const override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/core/dom/ScriptableDocumentParser.h ('k') | Source/core/dom/StringCallback.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698