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

Unified Diff: Source/core/accessibility/AXProgressIndicator.h

Issue 603423002: Replace OVERRIDE and FINAL with their C++11 counterparts in core/accessibility (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Narrowing area to core/accessibility Created 6 years, 2 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/core/accessibility/AXNodeObject.h ('k') | Source/core/accessibility/AXRenderObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXProgressIndicator.h
diff --git a/Source/core/accessibility/AXProgressIndicator.h b/Source/core/accessibility/AXProgressIndicator.h
index c3c9ca541b351914945b19d851ddadb1d407787e..614ced2abdf059cab031c091e9fa71947c69f60f 100644
--- a/Source/core/accessibility/AXProgressIndicator.h
+++ b/Source/core/accessibility/AXProgressIndicator.h
@@ -28,23 +28,23 @@ namespace blink {
class HTMLProgressElement;
class RenderProgress;
-class AXProgressIndicator FINAL : public AXRenderObject {
+class AXProgressIndicator final : public AXRenderObject {
public:
static PassRefPtr<AXProgressIndicator> create(RenderProgress*);
private:
- virtual AccessibilityRole roleValue() const OVERRIDE { return ProgressIndicatorRole; }
+ virtual AccessibilityRole roleValue() const override { return ProgressIndicatorRole; }
- virtual bool isProgressIndicator() const OVERRIDE { return true; }
+ virtual bool isProgressIndicator() const override { return true; }
- virtual float valueForRange() const OVERRIDE;
- virtual float maxValueForRange() const OVERRIDE;
- virtual float minValueForRange() const OVERRIDE;
+ virtual float valueForRange() const override;
+ virtual float maxValueForRange() const override;
+ virtual float minValueForRange() const override;
explicit AXProgressIndicator(RenderProgress*);
HTMLProgressElement* element() const;
- virtual bool computeAccessibilityIsIgnored() const OVERRIDE;
+ virtual bool computeAccessibilityIsIgnored() const override;
};
« no previous file with comments | « Source/core/accessibility/AXNodeObject.h ('k') | Source/core/accessibility/AXRenderObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698