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

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

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/InterpolationEffectTest.cpp ('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/KeyframeEffect.h
diff --git a/Source/core/animation/KeyframeEffect.h b/Source/core/animation/KeyframeEffect.h
index 431ea10f0133fcd4ad3602dda876e30fb8684306..f3662588620641730f23ea8db23c36f93f932623 100644
--- a/Source/core/animation/KeyframeEffect.h
+++ b/Source/core/animation/KeyframeEffect.h
@@ -59,9 +59,9 @@ public:
static PassRefPtrWillBeRawPtr<KeyframeEffect> create(Element*, const Vector<Dictionary>& keyframeDictionaryVector, const KeyframeEffectOptions& timingInput, ExceptionState&);
static PassRefPtrWillBeRawPtr<KeyframeEffect> create(Element*, const Vector<Dictionary>& keyframeDictionaryVector, ExceptionState&);
- virtual ~KeyframeEffect();
+ ~KeyframeEffect() override;
- virtual bool isAnimation() const override { return true; }
+ bool isAnimation() const override { return true; }
bool affects(PropertyHandle) const;
const EffectModel* model() const { return m_model.get(); }
@@ -96,11 +96,11 @@ public:
protected:
void applyEffects();
void clearEffects();
- virtual void updateChildrenAndEffects() const override;
- virtual void attach(Animation*) override;
- virtual void detach() override;
- virtual void specifiedTimingChanged() override;
- virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const override;
+ void updateChildrenAndEffects() const override;
+ void attach(Animation*) override;
+ void detach() override;
+ void specifiedTimingChanged() override;
+ double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const override;
virtual bool hasIncompatibleStyle();
bool hasMultipleTransformProperties() const;
« no previous file with comments | « Source/core/animation/InterpolationEffectTest.cpp ('k') | Source/core/animation/KeyframeEffectModel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698