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

Unified Diff: Source/core/accessibility/AXTableRow.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/AXTableHeaderContainer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXTableRow.h
diff --git a/Source/core/accessibility/AXTableRow.h b/Source/core/accessibility/AXTableRow.h
index 90eca7fba49e895f67ebd85edae81e1976805bb5..37364cfbe85b107015229e949441fceb6b9ecaf5 100644
--- a/Source/core/accessibility/AXTableRow.h
+++ b/Source/core/accessibility/AXTableRow.h
@@ -41,11 +41,11 @@ public:
static PassRefPtr<AXTableRow> create(RenderObject*);
virtual ~AXTableRow();
- virtual bool isTableRow() const OVERRIDE;
+ virtual bool isTableRow() const OVERRIDE FINAL;
// retrieves the "row" header (a th tag in the rightmost column)
virtual AXObject* headerObject();
- virtual AXObject* parentTable() const;
+ AXObject* parentTable() const;
void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; }
int rowIndex() const { return m_rowIndex; }
@@ -55,13 +55,13 @@ public:
void appendChild(AXObject*);
protected:
- virtual AccessibilityRole determineAccessibilityRole() OVERRIDE;
+ virtual AccessibilityRole determineAccessibilityRole() OVERRIDE FINAL;
private:
int m_rowIndex;
- virtual AXObject* observableObject() const OVERRIDE;
- virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
+ virtual AXObject* observableObject() const OVERRIDE FINAL;
+ virtual bool computeAccessibilityIsIgnored() const OVERRIDE FINAL;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow());
« no previous file with comments | « Source/core/accessibility/AXTableHeaderContainer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698