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

Unified Diff: Source/core/accessibility/AXTableRow.h

Issue 603423002: Replace OVERRIDE and FINAL with their C++11 counterparts in core/accessibility (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Narrowing area to core/accessibility Created 6 years, 2 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 b1a4ddfea19f4f9391641aee0e190c9d30934eb6..de60123907330a6395bed68dd6dcc635dc768300 100644
--- a/Source/core/accessibility/AXTableRow.h
+++ b/Source/core/accessibility/AXTableRow.h
@@ -41,7 +41,7 @@ public:
static PassRefPtr<AXTableRow> create(RenderObject*);
virtual ~AXTableRow();
- virtual bool isTableRow() const OVERRIDE FINAL;
+ virtual bool isTableRow() const override final;
// retrieves the "row" header (a th tag in the rightmost column)
virtual AXObject* headerObject();
@@ -55,13 +55,13 @@ public:
void appendChild(AXObject*);
protected:
- virtual AccessibilityRole determineAccessibilityRole() OVERRIDE FINAL;
+ virtual AccessibilityRole determineAccessibilityRole() override final;
private:
int m_rowIndex;
- virtual AXObject* observableObject() const OVERRIDE FINAL;
- virtual bool computeAccessibilityIsIgnored() const OVERRIDE FINAL;
+ 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