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

Unified Diff: Source/modules/accessibility/AXList.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/AXLayoutObject.h ('k') | Source/modules/accessibility/AXListBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXList.h
diff --git a/Source/modules/accessibility/AXList.h b/Source/modules/accessibility/AXList.h
index 0111635b229113a4ced82a93cb5126ff8a1d33ca..1113151ab684bad59e5e0e5cb4c413b7953f3f84 100644
--- a/Source/modules/accessibility/AXList.h
+++ b/Source/modules/accessibility/AXList.h
@@ -42,14 +42,14 @@ private:
public:
static PassRefPtrWillBeRawPtr<AXList> create(LayoutObject*, AXObjectCacheImpl&);
- virtual ~AXList();
+ ~AXList() override;
- virtual bool isList() const override { return true; }
+ bool isList() const override { return true; }
- virtual AccessibilityRole roleValue() const override final;
+ AccessibilityRole roleValue() const final;
private:
bool isDescriptionList() const;
- virtual bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override;
+ bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override;
};
} // namespace blink
« no previous file with comments | « Source/modules/accessibility/AXLayoutObject.h ('k') | Source/modules/accessibility/AXListBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698