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

Unified Diff: Source/core/accessibility/AXTable.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/AXSpinButton.h ('k') | Source/core/accessibility/AXTableCell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXTable.h
diff --git a/Source/core/accessibility/AXTable.h b/Source/core/accessibility/AXTable.h
index 93e7db5125e53001f6d5b34b6e4a891f4f7c0810..b95a53542ffd2fcdf1ffe760a2942ecb8720408d 100644
--- a/Source/core/accessibility/AXTable.h
+++ b/Source/core/accessibility/AXTable.h
@@ -45,15 +45,15 @@ public:
static PassRefPtr<AXTable> create(RenderObject*);
virtual ~AXTable();
- virtual void init() OVERRIDE FINAL;
+ virtual void init() override final;
- virtual bool isAXTable() const OVERRIDE FINAL;
- virtual bool isDataTable() const OVERRIDE FINAL;
+ virtual bool isAXTable() const override final;
+ virtual bool isDataTable() const override final;
- virtual AccessibilityRole roleValue() const OVERRIDE FINAL;
+ virtual AccessibilityRole roleValue() const override final;
- virtual void addChildren() OVERRIDE;
- virtual void clearChildren() OVERRIDE FINAL;
+ virtual void addChildren() override;
+ virtual void clearChildren() override final;
// To be overridden by AXARIAGrid.
virtual bool isAriaTable() const { return false; }
@@ -65,7 +65,7 @@ public:
unsigned columnCount();
unsigned rowCount();
- virtual String title() const OVERRIDE FINAL;
+ virtual String title() const override final;
// all the cells in the table
void cells(AccessibilityChildrenVector&);
@@ -85,7 +85,7 @@ protected:
bool hasARIARole() const;
virtual bool isTableExposableThroughAccessibility() const;
- virtual bool computeAccessibilityIsIgnored() const OVERRIDE FINAL;
+ virtual bool computeAccessibilityIsIgnored() const override final;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXTable, isAXTable());
« no previous file with comments | « Source/core/accessibility/AXSpinButton.h ('k') | Source/core/accessibility/AXTableCell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698