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

Unified Diff: Source/core/accessibility/AXARIAGridRow.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/AXARIAGridCell.h ('k') | Source/core/accessibility/AXImageMapLink.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXARIAGridRow.h
diff --git a/Source/core/accessibility/AXARIAGridRow.h b/Source/core/accessibility/AXARIAGridRow.h
index 4c9748494b7a9d95d339d77d447576150d5c9f77..50d449405c6581192ec318758454453a64b2d227 100644
--- a/Source/core/accessibility/AXARIAGridRow.h
+++ b/Source/core/accessibility/AXARIAGridRow.h
@@ -33,7 +33,7 @@
namespace blink {
-class AXARIAGridRow FINAL : public AXTableRow {
+class AXARIAGridRow final : public AXTableRow {
private:
explicit AXARIAGridRow(RenderObject*);
@@ -41,10 +41,10 @@ public:
static PassRefPtr<AXARIAGridRow> create(RenderObject*);
virtual ~AXARIAGridRow();
- virtual AXObject* headerObject() OVERRIDE;
+ virtual AXObject* headerObject() override;
private:
- virtual bool isARIATreeGridRow() const OVERRIDE;
+ virtual bool isARIATreeGridRow() const override;
};
} // namespace blink
« no previous file with comments | « Source/core/accessibility/AXARIAGridCell.h ('k') | Source/core/accessibility/AXImageMapLink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698