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

Unified Diff: Source/core/accessibility/AXTableColumn.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/AXTableCell.h ('k') | Source/core/accessibility/AXTableHeaderContainer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXTableColumn.h
diff --git a/Source/core/accessibility/AXTableColumn.h b/Source/core/accessibility/AXTableColumn.h
index bc6941866e0353c47612d10080927e00eeb392ac..defd1f61dc62290a67e01d2a15a6f6f24d7602e6 100644
--- a/Source/core/accessibility/AXTableColumn.h
+++ b/Source/core/accessibility/AXTableColumn.h
@@ -36,7 +36,7 @@ namespace blink {
class RenderTableSection;
-class AXTableColumn FINAL : public AXMockObject {
+class AXTableColumn final : public AXMockObject {
private:
AXTableColumn();
@@ -46,23 +46,23 @@ public:
AXObject* headerObject();
- virtual AccessibilityRole roleValue() const OVERRIDE { return ColumnRole; }
+ virtual AccessibilityRole roleValue() const override { return ColumnRole; }
void setColumnIndex(int columnIndex) { m_columnIndex = columnIndex; }
int columnIndex() const { return m_columnIndex; }
- virtual void addChildren() OVERRIDE;
- virtual void setParent(AXObject*) OVERRIDE;
+ virtual void addChildren() override;
+ virtual void setParent(AXObject*) override;
- virtual LayoutRect elementRect() const OVERRIDE;
+ virtual LayoutRect elementRect() const override;
private:
unsigned m_columnIndex;
LayoutRect m_columnRect;
- virtual bool isTableCol() const OVERRIDE { return true; }
+ virtual bool isTableCol() const override { return true; }
AXObject* headerObjectForSection(RenderTableSection*, bool thTagRequired);
- virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
+ virtual bool computeAccessibilityIsIgnored() const override;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXTableColumn, isTableCol());
« no previous file with comments | « Source/core/accessibility/AXTableCell.h ('k') | Source/core/accessibility/AXTableHeaderContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698