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

Unified Diff: Source/core/rendering/RenderProgress.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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/rendering/RenderPart.h ('k') | Source/core/rendering/RenderQuote.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderProgress.h
diff --git a/Source/core/rendering/RenderProgress.h b/Source/core/rendering/RenderProgress.h
index daddb1f34caf278bd5025b232129896c7907f620..0812331386855a0af4fe3bd747eff4845f91e2f3 100644
--- a/Source/core/rendering/RenderProgress.h
+++ b/Source/core/rendering/RenderProgress.h
@@ -27,23 +27,23 @@ namespace blink {
class HTMLProgressElement;
-class RenderProgress FINAL : public RenderBlockFlow {
+class RenderProgress final : public RenderBlockFlow {
public:
explicit RenderProgress(HTMLElement*);
virtual ~RenderProgress();
- virtual void destroy() OVERRIDE;
+ virtual void destroy() override;
double position() const { return m_position; }
double animationProgress() const;
bool isDeterminate() const;
- virtual void updateFromElement() OVERRIDE;
+ virtual void updateFromElement() override;
HTMLProgressElement* progressElement() const;
private:
- virtual const char* renderName() const OVERRIDE { return "RenderProgress"; }
- virtual bool isProgress() const OVERRIDE { return true; }
+ virtual const char* renderName() const override { return "RenderProgress"; }
+ virtual bool isProgress() const override { return true; }
void animationTimerFired(Timer<RenderProgress>*);
void updateAnimationState();
« no previous file with comments | « Source/core/rendering/RenderPart.h ('k') | Source/core/rendering/RenderQuote.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698