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

Unified Diff: Source/core/accessibility/AXScrollView.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/AXSVGRoot.h ('k') | Source/core/accessibility/AXScrollbar.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXScrollView.h
diff --git a/Source/core/accessibility/AXScrollView.h b/Source/core/accessibility/AXScrollView.h
index cf7e291024e41d7d34f14fba1cf068b327e37625..5da75f3afc0c38db280b872f8f5155d22630764f 100644
--- a/Source/core/accessibility/AXScrollView.h
+++ b/Source/core/accessibility/AXScrollView.h
@@ -34,10 +34,10 @@ class AXScrollbar;
class Scrollbar;
class ScrollView;
-class AXScrollView : public AXObject {
+class AXScrollView FINAL : public AXObject {
public:
static PassRefPtr<AXScrollView> create(ScrollView*);
- virtual AccessibilityRole roleValue() const { return ScrollAreaRole; }
+ virtual AccessibilityRole roleValue() const OVERRIDE { return ScrollAreaRole; }
ScrollView* scrollView() const { return m_scrollView; }
virtual ~AXScrollView();
« no previous file with comments | « Source/core/accessibility/AXSVGRoot.h ('k') | Source/core/accessibility/AXScrollbar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698