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); |