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

Unified Diff: Source/modules/accessibility/AXTableRow.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
Index: Source/modules/accessibility/AXTableRow.h
diff --git a/Source/modules/accessibility/AXTableRow.h b/Source/modules/accessibility/AXTableRow.h
index ee98546e27ab726630bfeabb69ef7cd32a386e68..8ce3b0b1c20ee4ed27b7103a06ca42259cc74d1d 100644
--- a/Source/modules/accessibility/AXTableRow.h
+++ b/Source/modules/accessibility/AXTableRow.h
@@ -42,9 +42,9 @@ protected:
public:
static PassRefPtrWillBeRawPtr<AXTableRow> create(LayoutObject*, AXObjectCacheImpl&);
- virtual ~AXTableRow();
+ ~AXTableRow() override;
- virtual bool isTableRow() const override final;
+ bool isTableRow() const final;
// retrieves the "row" header (a th tag in the rightmost column)
virtual AXObject* headerObject();
@@ -60,12 +60,12 @@ public:
void appendChild(AXObject*);
protected:
- virtual AccessibilityRole determineAccessibilityRole() override final;
+ AccessibilityRole determineAccessibilityRole() final;
private:
int m_rowIndex;
- virtual bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override final;
+ bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const final;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow());
« no previous file with comments | « Source/modules/accessibility/AXTableHeaderContainer.h ('k') | Source/modules/app_banner/BeforeInstallPromptEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698