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

Unified Diff: Source/core/accessibility/AXList.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/AXInlineTextBox.h ('k') | Source/core/accessibility/AXListBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXList.h
diff --git a/Source/core/accessibility/AXList.h b/Source/core/accessibility/AXList.h
index cba99d50a6ddc118cec1d99204b4038ebb6bf017..861b5d9f2dcd0c004d1e0cbfe79fa933433befa6 100644
--- a/Source/core/accessibility/AXList.h
+++ b/Source/core/accessibility/AXList.h
@@ -33,7 +33,7 @@
namespace WebCore {
-class AXList : public AXRenderObject {
+class AXList FINAL : public AXRenderObject {
private:
explicit AXList(RenderObject*);
@@ -41,14 +41,14 @@ public:
static PassRefPtr<AXList> create(RenderObject*);
virtual ~AXList();
- virtual bool isList() const { return true; }
+ virtual bool isList() const OVERRIDE { return true; }
bool isUnorderedList() const;
bool isOrderedList() const;
bool isDescriptionList() const;
- virtual AccessibilityRole roleValue() const { return ListRole; }
+ virtual AccessibilityRole roleValue() const OVERRIDE { return ListRole; }
private:
- virtual bool computeAccessibilityIsIgnored() const;
+ virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
};
} // namespace WebCore
« no previous file with comments | « Source/core/accessibility/AXInlineTextBox.h ('k') | Source/core/accessibility/AXListBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698