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

Unified Diff: Source/core/accessibility/AXMockObject.h

Issue 603423002: Replace OVERRIDE and FINAL with their C++11 counterparts in core/accessibility (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Narrowing area to core/accessibility 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/accessibility/AXMenuListPopup.h ('k') | Source/core/accessibility/AXNodeObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXMockObject.h
diff --git a/Source/core/accessibility/AXMockObject.h b/Source/core/accessibility/AXMockObject.h
index 782f29d72373d5c3fa553e410b4a383ab8ad8ecc..96b0d9842b308a5eac495c0e8ed50fcfb2807ca9 100644
--- a/Source/core/accessibility/AXMockObject.h
+++ b/Source/core/accessibility/AXMockObject.h
@@ -40,19 +40,19 @@ public:
virtual void setParent(AXObject* parent) { m_parent = parent; }
// AXObject overrides.
- virtual AXObject* parentObject() const OVERRIDE { return m_parent; }
- virtual bool isEnabled() const OVERRIDE { return true; }
+ virtual AXObject* parentObject() const override { return m_parent; }
+ virtual bool isEnabled() const override { return true; }
protected:
AXObject* m_parent;
// Must be called when the parent object clears its children.
- virtual void detachFromParent() OVERRIDE { m_parent = 0; }
+ virtual void detachFromParent() override { m_parent = 0; }
private:
- virtual bool isMockObject() const OVERRIDE FINAL { return true; }
+ virtual bool isMockObject() const override final { return true; }
- virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
+ virtual bool computeAccessibilityIsIgnored() const override;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXMockObject, isMockObject());
« no previous file with comments | « Source/core/accessibility/AXMenuListPopup.h ('k') | Source/core/accessibility/AXNodeObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698