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

Unified Diff: Source/modules/accessibility/AXTable.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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/modules/accessibility/AXSpinButton.h ('k') | Source/modules/accessibility/AXTableCell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXTable.h
diff --git a/Source/modules/accessibility/AXTable.h b/Source/modules/accessibility/AXTable.h
index 1a1976688554f1b602433e5286351b19c6b5ff10..45967c18d762f1c872fdaea48f9923e9b72b640f 100644
--- a/Source/modules/accessibility/AXTable.h
+++ b/Source/modules/accessibility/AXTable.h
@@ -45,18 +45,18 @@ protected:
public:
static PassRefPtrWillBeRawPtr<AXTable> create(LayoutObject*, AXObjectCacheImpl&);
- virtual ~AXTable();
+ ~AXTable() override;
DECLARE_VIRTUAL_TRACE();
- virtual void init() override final;
+ void init() final;
- virtual bool isAXTable() const override final;
- virtual bool isDataTable() const override final;
+ bool isAXTable() const final;
+ bool isDataTable() const final;
- virtual AccessibilityRole roleValue() const override final;
+ AccessibilityRole roleValue() const final;
- virtual void addChildren() override;
- virtual void clearChildren() override final;
+ void addChildren() override;
+ void clearChildren() final;
// To be overridden by AXARIAGrid.
virtual bool isAriaTable() const { return false; }
@@ -68,7 +68,7 @@ public:
unsigned columnCount();
unsigned rowCount();
- virtual String deprecatedTitle(TextUnderElementMode) const override final;
+ String deprecatedTitle(TextUnderElementMode) const final;
// all the cells in the table
void cells(AccessibilityChildrenVector&);
@@ -89,7 +89,7 @@ protected:
bool hasARIARole() const;
virtual bool isTableExposableThroughAccessibility() const;
- virtual bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override final;
+ bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const final;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXTable, isAXTable());
« no previous file with comments | « Source/modules/accessibility/AXSpinButton.h ('k') | Source/modules/accessibility/AXTableCell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698