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

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

Issue 633573004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/NamedNodeMap.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 5f8e0f7502ef2e5e1a2afee1d9a1a4f57e46bf96..62832d103ef0e46fcf5b9b4193957832b34a601d 100644
--- a/Source/core/dom/NameNodeList.h
+++ b/Source/core/dom/NameNodeList.h
@@ -30,7 +30,7 @@
namespace blink {
// NodeList which lists all Nodes in a Element with a given "name" attribute
-class NameNodeList FINAL : public LiveNodeList {
+class NameNodeList final : public LiveNodeList {
public:
static PassRefPtrWillBeRawPtr<NameNodeList> create(ContainerNode& rootNode, CollectionType type, const AtomicString& name)
{
@@ -43,7 +43,7 @@ public:
private:
NameNodeList(ContainerNode& rootNode, const AtomicString& name);
- virtual bool elementMatches(const Element&) const OVERRIDE;
+ virtual bool elementMatches(const Element&) const override;
AtomicString m_name;
};
« no previous file with comments | « Source/core/dom/MutationRecord.cpp ('k') | Source/core/dom/NamedNodeMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698