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

Unified Diff: Source/core/dom/LiveNodeList.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/IdTargetObserverRegistry.h ('k') | Source/core/dom/MainThreadTaskRunnerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/LiveNodeList.h
diff --git a/Source/core/dom/LiveNodeList.h b/Source/core/dom/LiveNodeList.h
index 04c6d5b23d0b5c88631b4f3950a44c1baacc9578..e2b826fe426b3115e4974aae9cf97c9600e90b74 100644
--- a/Source/core/dom/LiveNodeList.h
+++ b/Source/core/dom/LiveNodeList.h
@@ -41,11 +41,11 @@ public:
LiveNodeList(ContainerNode& ownerNode, CollectionType collectionType, NodeListInvalidationType invalidationType, NodeListRootType rootType = NodeListIsRootedAtNode)
: LiveNodeListBase(ownerNode, rootType, invalidationType, collectionType) { }
- virtual unsigned length() const OVERRIDE FINAL;
- virtual Element* item(unsigned offset) const OVERRIDE FINAL;
+ virtual unsigned length() const override final;
+ virtual Element* item(unsigned offset) const override final;
virtual bool elementMatches(const Element&) const = 0;
- virtual void invalidateCache(Document* oldDocument = 0) const OVERRIDE FINAL;
+ virtual void invalidateCache(Document* oldDocument = 0) const override final;
void invalidateCacheForAttribute(const QualifiedName*) const;
// Collection IndexCache API.
@@ -55,10 +55,10 @@ public:
Element* traverseForwardToOffset(unsigned offset, Element& currentNode, unsigned& currentOffset) const;
Element* traverseBackwardToOffset(unsigned offset, Element& currentNode, unsigned& currentOffset) const;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
- virtual Node* virtualOwnerNode() const OVERRIDE FINAL;
+ virtual Node* virtualOwnerNode() const override final;
mutable CollectionItemsCache<LiveNodeList, Element> m_collectionItemsCache;
};
« no previous file with comments | « Source/core/dom/IdTargetObserverRegistry.h ('k') | Source/core/dom/MainThreadTaskRunnerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698