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

Unified Diff: Source/core/animation/AnimationEffectTest.cpp

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/core/animation/Animation.h ('k') | Source/core/animation/AnimationTimeline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationEffectTest.cpp
diff --git a/Source/core/animation/AnimationEffectTest.cpp b/Source/core/animation/AnimationEffectTest.cpp
index 2c8d747a50ec93cdf424920196513a925da20cee..2e67b556379dc1649272d7a0e9648d854b45319e 100644
--- a/Source/core/animation/AnimationEffectTest.cpp
+++ b/Source/core/animation/AnimationEffectTest.cpp
@@ -38,12 +38,12 @@ namespace blink {
class TestAnimationEffectEventDelegate : public AnimationEffect::EventDelegate {
public:
- virtual void onEventCondition(const AnimationEffect& animationNode) override
+ void onEventCondition(const AnimationEffect& animationNode) override
{
m_eventTriggered = true;
}
- virtual bool requiresIterationEvents(const AnimationEffect& animationNode) override
+ bool requiresIterationEvents(const AnimationEffect& animationNode) override
{
return true;
}
@@ -75,10 +75,10 @@ public:
AnimationEffect::updateInheritedTime(time, reason);
}
- virtual void updateChildrenAndEffects() const override { }
+ void updateChildrenAndEffects() const override { }
void willDetach() { }
TestAnimationEffectEventDelegate* eventDelegate() { return m_eventDelegate.get(); }
- virtual double calculateTimeToEffectChange(bool forwards, double localTime, double timeToNextIteration) const override
+ double calculateTimeToEffectChange(bool forwards, double localTime, double timeToNextIteration) const override
{
m_localTime = localTime;
m_timeToNextIteration = timeToNextIteration;
« no previous file with comments | « Source/core/animation/Animation.h ('k') | Source/core/animation/AnimationTimeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698