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

Unified Diff: Source/core/dom/NameNodeList.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/MutationRecord.cpp ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/NameNodeList.h
diff --git a/Source/core/dom/NameNodeList.h b/Source/core/dom/NameNodeList.h
index 62832d103ef0e46fcf5b9b4193957832b34a601d..5a8e392d7cd2a97e8c1dff25c548440cd60ad099 100644
--- a/Source/core/dom/NameNodeList.h
+++ b/Source/core/dom/NameNodeList.h
@@ -38,12 +38,12 @@ public:
return adoptRefWillBeNoop(new NameNodeList(rootNode, name));
}
- virtual ~NameNodeList();
+ ~NameNodeList() override;
private:
NameNodeList(ContainerNode& rootNode, const AtomicString& name);
- virtual bool elementMatches(const Element&) const override;
+ bool elementMatches(const Element&) const override;
AtomicString m_name;
};
« no previous file with comments | « Source/core/dom/MutationRecord.cpp ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698