| Index: Source/core/animation/Animation.h
|
| diff --git a/Source/core/animation/Animation.h b/Source/core/animation/Animation.h
|
| index 85b5ba62553671d1dafb9b6a3ff8473056c16d91..b63508b25dce8191af652245299e9e7b2702302a 100644
|
| --- a/Source/core/animation/Animation.h
|
| +++ b/Source/core/animation/Animation.h
|
| @@ -45,7 +45,7 @@ class Element;
|
| class ExceptionState;
|
| class SampledEffect;
|
|
|
| -class Animation FINAL : public AnimationNode {
|
| +class Animation final : public AnimationNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum Priority { DefaultPriority, TransitionPriority };
|
| @@ -61,7 +61,7 @@ public:
|
|
|
| virtual ~Animation();
|
|
|
| - virtual bool isAnimation() const OVERRIDE { return true; }
|
| + virtual bool isAnimation() const override { return true; }
|
|
|
| bool affects(CSSPropertyID) const;
|
| const AnimationEffect* effect() const { return m_effect.get(); }
|
| @@ -88,11 +88,11 @@ public:
|
| protected:
|
| void applyEffects();
|
| void clearEffects();
|
| - virtual void updateChildrenAndEffects() const OVERRIDE;
|
| - virtual void attach(AnimationPlayer*) OVERRIDE;
|
| - virtual void detach() OVERRIDE;
|
| - virtual void specifiedTimingChanged() OVERRIDE;
|
| - virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const OVERRIDE;
|
| + virtual void updateChildrenAndEffects() const override;
|
| + virtual void attach(AnimationPlayer*) override;
|
| + virtual void detach() override;
|
| + virtual void specifiedTimingChanged() override;
|
| + virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const override;
|
|
|
| private:
|
| Animation(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, Priority, PassOwnPtrWillBeRawPtr<EventDelegate>);
|
|
|