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

Unified Diff: Source/core/dom/ContainerNode.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/Comment.h ('k') | Source/core/dom/ContextFeatures.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ContainerNode.h
diff --git a/Source/core/dom/ContainerNode.h b/Source/core/dom/ContainerNode.h
index 3b0ce004bfec3d739eae7582893cf01eed77228e..6026c7a1adec4b94d432c390fc5490c8d7fd08f3 100644
--- a/Source/core/dom/ContainerNode.h
+++ b/Source/core/dom/ContainerNode.h
@@ -103,13 +103,13 @@ public:
void cloneChildNodes(ContainerNode* clone);
- virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
- virtual void detach(const AttachContext& = AttachContext()) OVERRIDE;
- virtual LayoutRect boundingBox() const OVERRIDE FINAL;
- virtual void setFocus(bool) OVERRIDE;
+ virtual void attach(const AttachContext& = AttachContext()) override;
+ virtual void detach(const AttachContext& = AttachContext()) override;
+ virtual LayoutRect boundingBox() const override final;
+ virtual void setFocus(bool) override;
void focusStateChanged();
- virtual void setActive(bool = true) OVERRIDE;
- virtual void setHovered(bool = true) OVERRIDE;
+ virtual void setActive(bool = true) override;
+ virtual void setHovered(bool = true) override;
bool childrenOrSiblingsAffectedByFocus() const { return hasRestyleFlag(ChildrenOrSiblingsAffectedByFocus); }
void setChildrenOrSiblingsAffectedByFocus() { setRestyleFlag(ChildrenOrSiblingsAffectedByFocus); }
@@ -198,7 +198,7 @@ public:
void disconnectDescendantFrames();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
protected:
ContainerNode(TreeScope*, ConstructionType = CreateContainer);
« no previous file with comments | « Source/core/dom/Comment.h ('k') | Source/core/dom/ContextFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698