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

Unified Diff: Source/core/accessibility/AXARIAGrid.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 | « no previous file | Source/core/accessibility/AXARIAGridCell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXARIAGrid.h
diff --git a/Source/core/accessibility/AXARIAGrid.h b/Source/core/accessibility/AXARIAGrid.h
index 3d7cd18cdac8c229365ed3587b63ec1123e44623..94f66f877309b53a116e8e5c8782858acd329a50 100644
--- a/Source/core/accessibility/AXARIAGrid.h
+++ b/Source/core/accessibility/AXARIAGrid.h
@@ -37,7 +37,7 @@ namespace blink {
class AXTableCell;
class AXTableHeaderContainer;
-class AXARIAGrid FINAL : public AXTable {
+class AXARIAGrid final : public AXTable {
private:
explicit AXARIAGrid(RenderObject*);
@@ -45,15 +45,15 @@ public:
static PassRefPtr<AXARIAGrid> create(RenderObject*);
virtual ~AXARIAGrid();
- virtual bool isAriaTable() const OVERRIDE { return true; }
+ virtual bool isAriaTable() const override { return true; }
- virtual void addChildren() OVERRIDE;
+ virtual void addChildren() override;
private:
// ARIA treegrids and grids support selected rows.
- virtual bool supportsSelectedRows() OVERRIDE { return true; }
- virtual bool isMultiSelectable() const OVERRIDE { return true; }
- virtual bool isTableExposableThroughAccessibility() const OVERRIDE { return true; }
+ virtual bool supportsSelectedRows() override { return true; }
+ virtual bool isMultiSelectable() const override { return true; }
+ virtual bool isTableExposableThroughAccessibility() const override { return true; }
bool addTableCellChild(AXObject*, HashSet<AXObject*>& appendedRows, unsigned& columnCount);
};
« no previous file with comments | « no previous file | Source/core/accessibility/AXARIAGridCell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698