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

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

Issue 131093003: Update accessibility classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 edd6179713c98bc937bcb5b160196442a7fa0439..fcb50aa02c14b860a0cde5ce4c45b8c6477ba0e0 100644
--- a/Source/core/accessibility/AXMockObject.h
+++ b/Source/core/accessibility/AXMockObject.h
@@ -37,7 +37,7 @@ protected:
public:
virtual ~AXMockObject();
- virtual void setParent(AXObject* parent) { m_parent = parent; };
+ virtual void setParent(AXObject* parent) { m_parent = parent; }
// AXObject overrides.
virtual AXObject* parentObject() const OVERRIDE { return m_parent; }
@@ -50,7 +50,7 @@ protected:
virtual void detachFromParent() OVERRIDE { m_parent = 0; }
private:
- virtual bool isMockObject() const OVERRIDE { return true; }
+ virtual bool isMockObject() const OVERRIDE FINAL { return true; }
virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
};
« 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