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

Unified Diff: Source/modules/accessibility/AXARIAGridCell.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/AXARIAGrid.h ('k') | Source/modules/accessibility/AXARIAGridRow.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXARIAGridCell.h
diff --git a/Source/modules/accessibility/AXARIAGridCell.h b/Source/modules/accessibility/AXARIAGridCell.h
index 4b759201ee7f08b3ef4e4f457c1dbd007bd79f47..7f6d61db864835358043f022313aa7c169f547e6 100644
--- a/Source/modules/accessibility/AXARIAGridCell.h
+++ b/Source/modules/accessibility/AXARIAGridCell.h
@@ -42,18 +42,18 @@ private:
public:
static PassRefPtrWillBeRawPtr<AXARIAGridCell> create(LayoutObject*, AXObjectCacheImpl&);
- virtual ~AXARIAGridCell();
+ ~AXARIAGridCell() override;
// fills in the start location and row span of cell
- virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) override;
+ 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 AccessibilityRole scanToDecideHeaderRole() override final;
+ void columnIndexRange(pair<unsigned, unsigned>& columnRange) override;
+ AccessibilityRole scanToDecideHeaderRole() final;
protected:
bool isAriaColumnHeader() const;
bool isAriaRowHeader() const;
- virtual AXObject* parentTable() const override;
+ AXObject* parentTable() const override;
};
} // namespace blink
« no previous file with comments | « Source/modules/accessibility/AXARIAGrid.h ('k') | Source/modules/accessibility/AXARIAGridRow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698