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

Unified Diff: Source/core/accessibility/AXRenderObject.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/AXProgressIndicator.h ('k') | Source/core/accessibility/AXSVGRoot.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXRenderObject.h
diff --git a/Source/core/accessibility/AXRenderObject.h b/Source/core/accessibility/AXRenderObject.h
index 160d0d7db3aa34da2e86e70d81318c6d28d42964..1ffe7c3685fc8cb946d1f33a5e4f57bee9f62eeb 100644
--- a/Source/core/accessibility/AXRenderObject.h
+++ b/Source/core/accessibility/AXRenderObject.h
@@ -64,7 +64,7 @@ public:
virtual ~AXRenderObject();
// Public, overridden from AXObject.
- virtual RenderObject* renderer() const OVERRIDE { return m_renderer; }
+ virtual RenderObject* renderer() const OVERRIDE FINAL { return m_renderer; }
virtual LayoutRect elementRect() const OVERRIDE;
void setRenderer(RenderObject*);
@@ -73,7 +73,7 @@ public:
Document* topDocument() const;
bool shouldNotifyActiveDescendant() const;
bool needsToUpdateChildren() const { return m_childrenDirty; }
- ScrollableArea* getScrollableAreaIfScrollable() const;
+ virtual ScrollableArea* getScrollableAreaIfScrollable() const OVERRIDE FINAL;
virtual AccessibilityRole determineAccessibilityRole() OVERRIDE;
void checkCachedElementRect() const;
void updateCachedElementRect() const;
« no previous file with comments | « Source/core/accessibility/AXProgressIndicator.h ('k') | Source/core/accessibility/AXSVGRoot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698