| Index: Source/core/animation/animatable/AnimatableRepeatable.h
|
| diff --git a/Source/core/animation/animatable/AnimatableRepeatable.h b/Source/core/animation/animatable/AnimatableRepeatable.h
|
| index d77bd028bfe416295526ad82d59c18d13d5a82c1..2ec1e20287b15427edc09f1f523cd99e9398498f 100644
|
| --- a/Source/core/animation/animatable/AnimatableRepeatable.h
|
| +++ b/Source/core/animation/animatable/AnimatableRepeatable.h
|
| @@ -50,7 +50,7 @@ public:
|
|
|
| const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values() const { return m_values; }
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| protected:
|
| AnimatableRepeatable()
|
| @@ -64,15 +64,15 @@ protected:
|
|
|
| static bool interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& interpolatedValues);
|
|
|
| - virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
|
| + virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
|
|
|
| WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > m_values;
|
|
|
| private:
|
| - virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
|
| + virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
|
|
|
| - virtual AnimatableType type() const OVERRIDE { return TypeRepeatable; }
|
| - virtual bool equalTo(const AnimatableValue*) const OVERRIDE FINAL;
|
| + virtual AnimatableType type() const override { return TypeRepeatable; }
|
| + virtual bool equalTo(const AnimatableValue*) const override final;
|
| };
|
|
|
| DEFINE_TYPE_CASTS(AnimatableRepeatable, AnimatableValue, value, (value->isRepeatable() || value->isStrokeDasharrayList()), (value.isRepeatable() || value.isStrokeDasharrayList()));
|
|
|