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

Unified Diff: Source/core/animation/InertAnimation.h

Issue 129133002: Update animation classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/animation/DocumentTimeline.h ('k') | Source/core/animation/KeyframeEffectModel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/InertAnimation.h
diff --git a/Source/core/animation/InertAnimation.h b/Source/core/animation/InertAnimation.h
index a52ba532ec60de3268469f8f10a028af1c0610fc..7b12573b6b01f1e151c06b60c1c9f7af37908831 100644
--- a/Source/core/animation/InertAnimation.h
+++ b/Source/core/animation/InertAnimation.h
@@ -46,9 +46,9 @@ public:
bool paused() const { return m_paused; }
protected:
- virtual bool updateChildrenAndEffects() const OVERRIDE { return false; };
- virtual void willDetach() OVERRIDE { };
- virtual double calculateTimeToEffectChange(double inheritedTime, double timeToNextIteration) const OVERRIDE FINAL;
+ virtual bool updateChildrenAndEffects() const OVERRIDE { return false; }
+ virtual void willDetach() OVERRIDE { }
+ virtual double calculateTimeToEffectChange(double inheritedTime, double timeToNextIteration) const OVERRIDE;
private:
InertAnimation(PassRefPtr<AnimationEffect>, const Timing&, bool paused);
« no previous file with comments | « Source/core/animation/DocumentTimeline.h ('k') | Source/core/animation/KeyframeEffectModel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698