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

Unified Diff: Source/core/accessibility/AXARIAGridCell.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/AXARIAGrid.h ('k') | Source/core/accessibility/AXARIAGridRow.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXARIAGridCell.h
diff --git a/Source/core/accessibility/AXARIAGridCell.h b/Source/core/accessibility/AXARIAGridCell.h
index a0d178d8d3856ad9ad09340dd3f03affaa2f8c40..2eaab9acad6ad4102b0e66d45684c4d14178b4e4 100644
--- a/Source/core/accessibility/AXARIAGridCell.h
+++ b/Source/core/accessibility/AXARIAGridCell.h
@@ -33,7 +33,7 @@
namespace blink {
-class AXARIAGridCell FINAL : public AXTableCell {
+class AXARIAGridCell final : public AXTableCell {
private:
explicit AXARIAGridCell(RenderObject*);
@@ -42,12 +42,12 @@ public:
virtual ~AXARIAGridCell();
// fills in the start location and row span of cell
- virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) OVERRIDE;
+ virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) override;
// fills in the start location and column span of cell
- virtual void columnIndexRange(pair<unsigned, unsigned>& columnRange) OVERRIDE;
+ virtual void columnIndexRange(pair<unsigned, unsigned>& columnRange) override;
protected:
- virtual AXObject* parentTable() const OVERRIDE;
+ virtual AXObject* parentTable() const override;
};
} // namespace blink
« no previous file with comments | « Source/core/accessibility/AXARIAGrid.h ('k') | Source/core/accessibility/AXARIAGridRow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698