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

Unified Diff: Source/core/accessibility/AXTableCell.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/AXTable.h ('k') | Source/core/accessibility/AXTableColumn.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXTableCell.h
diff --git a/Source/core/accessibility/AXTableCell.h b/Source/core/accessibility/AXTableCell.h
index c62d0d32c5ac136b49b42549b31523d170abb730..205eb700c9304c996c3262ccb109f77f85c7fc9f 100644
--- a/Source/core/accessibility/AXTableCell.h
+++ b/Source/core/accessibility/AXTableCell.h
@@ -41,7 +41,7 @@ public:
static PassRefPtr<AXTableCell> create(RenderObject*);
virtual ~AXTableCell();
- virtual bool isTableCell() const OVERRIDE;
+ virtual bool isTableCell() const OVERRIDE FINAL;
// fills in the start location and row span of cell
virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange);
@@ -51,13 +51,13 @@ public:
protected:
virtual AXObject* parentTable() const;
int m_rowIndex;
- virtual AccessibilityRole determineAccessibilityRole() OVERRIDE;
+ virtual AccessibilityRole determineAccessibilityRole() OVERRIDE FINAL;
private:
// If a table cell is not exposed as a table cell, a TH element can serve as its title UI element.
- virtual AXObject* titleUIElement() const OVERRIDE;
- virtual bool exposesTitleUIElement() const OVERRIDE { return true; }
- virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
+ virtual AXObject* titleUIElement() const OVERRIDE FINAL;
+ virtual bool exposesTitleUIElement() const OVERRIDE FINAL { return true; }
+ virtual bool computeAccessibilityIsIgnored() const OVERRIDE FINAL;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXTableCell, isTableCell());
« no previous file with comments | « Source/core/accessibility/AXTable.h ('k') | Source/core/accessibility/AXTableColumn.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698