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

Unified Diff: Source/modules/accessibility/AXTableColumn.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/AXTableCell.h ('k') | Source/modules/accessibility/AXTableHeaderContainer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXTableColumn.h
diff --git a/Source/modules/accessibility/AXTableColumn.h b/Source/modules/accessibility/AXTableColumn.h
index 70d664979844f6b414979d4f838084cc845b6831..c58fe8813734fab862d28e022451eaca48a96fa7 100644
--- a/Source/modules/accessibility/AXTableColumn.h
+++ b/Source/modules/accessibility/AXTableColumn.h
@@ -45,29 +45,29 @@ private:
public:
static PassRefPtrWillBeRawPtr<AXTableColumn> create(AXObjectCacheImpl&);
- virtual ~AXTableColumn();
+ ~AXTableColumn() override;
// retrieves the topmost "column" header (th)
AXObject* headerObject();
// retrieves the "column" headers (th, scope) from top to bottom
void headerObjectsForColumn(AccessibilityChildrenVector&);
- virtual AccessibilityRole roleValue() const override { return ColumnRole; }
+ 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;
+ void addChildren() override;
+ void setParent(AXObject*) override;
- virtual LayoutRect elementRect() const override;
+ LayoutRect elementRect() const override;
private:
unsigned m_columnIndex;
LayoutRect m_columnRect;
- virtual bool isTableCol() const override { return true; }
- virtual bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override;
+ bool isTableCol() const override { return true; }
+ bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXTableColumn, isTableCol());
« no previous file with comments | « Source/modules/accessibility/AXTableCell.h ('k') | Source/modules/accessibility/AXTableHeaderContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698