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

Unified Diff: Source/core/accessibility/AXTableCell.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/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 d8b8bafa880b5fab3b180670b77d0853d0f65d43..f229114e720beba50fad20b0384fdac6ab31f3f5 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 FINAL;
+ 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 FINAL;
+ 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 FINAL;
- virtual bool exposesTitleUIElement() const OVERRIDE FINAL { return true; }
- virtual bool computeAccessibilityIsIgnored() const OVERRIDE FINAL;
+ 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