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

Unified Diff: Source/modules/accessibility/AXProgressIndicator.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/AXObjectTest.cpp ('k') | Source/modules/accessibility/AXSVGRoot.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXProgressIndicator.h
diff --git a/Source/modules/accessibility/AXProgressIndicator.h b/Source/modules/accessibility/AXProgressIndicator.h
index 98c67f0a60b965ff472f358928fa135894758fc5..cf5b97b189f166164c4670b46c634cd653ca1e7b 100644
--- a/Source/modules/accessibility/AXProgressIndicator.h
+++ b/Source/modules/accessibility/AXProgressIndicator.h
@@ -34,18 +34,18 @@ public:
static PassRefPtrWillBeRawPtr<AXProgressIndicator> create(LayoutProgress*, AXObjectCacheImpl&);
private:
- virtual AccessibilityRole determineAccessibilityRole() override final;
+ AccessibilityRole determineAccessibilityRole() final;
- virtual bool isProgressIndicator() const override { return true; }
+ bool isProgressIndicator() const override { return true; }
- virtual float valueForRange() const override;
- virtual float maxValueForRange() const override;
- virtual float minValueForRange() const override;
+ float valueForRange() const override;
+ float maxValueForRange() const override;
+ float minValueForRange() const override;
AXProgressIndicator(LayoutProgress*, AXObjectCacheImpl&);
HTMLProgressElement* element() const;
- virtual bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override;
+ bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override;
};
« no previous file with comments | « Source/modules/accessibility/AXObjectTest.cpp ('k') | Source/modules/accessibility/AXSVGRoot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698