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

Unified Diff: Source/core/dom/EmptyNodeList.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/ElementDataCache.h ('k') | Source/core/dom/ExecutionContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/EmptyNodeList.h
diff --git a/Source/core/dom/EmptyNodeList.h b/Source/core/dom/EmptyNodeList.h
index f11775d0e83237a0f241f681dc981cf23720a4e2..694679a7b4a35c78c54be6fe751b9f52b81e9c5c 100644
--- a/Source/core/dom/EmptyNodeList.h
+++ b/Source/core/dom/EmptyNodeList.h
@@ -37,7 +37,7 @@
namespace blink {
-class EmptyNodeList FINAL : public NodeList {
+class EmptyNodeList final : public NodeList {
public:
static PassRefPtrWillBeRawPtr<EmptyNodeList> create(Node& rootNode)
{
@@ -47,16 +47,16 @@ public:
Node& ownerNode() const { return *m_owner; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit EmptyNodeList(Node& rootNode) : m_owner(rootNode) { }
- virtual unsigned length() const OVERRIDE { return 0; }
- virtual Node* item(unsigned) const OVERRIDE { return 0; }
+ virtual unsigned length() const override { return 0; }
+ virtual Node* item(unsigned) const override { return 0; }
- virtual bool isEmptyNodeList() const OVERRIDE { return true; }
- virtual Node* virtualOwnerNode() const OVERRIDE;
+ virtual bool isEmptyNodeList() const override { return true; }
+ virtual Node* virtualOwnerNode() const override;
RefPtrWillBeMember<Node> m_owner;
};
« no previous file with comments | « Source/core/dom/ElementDataCache.h ('k') | Source/core/dom/ExecutionContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698