| Index: Source/core/animation/animatable/AnimatableShapeValue.h
|
| diff --git a/Source/core/animation/animatable/AnimatableShapeValue.h b/Source/core/animation/animatable/AnimatableShapeValue.h
|
| index e8aeda50b887656d9be2946174006173be01c341..c40385aebf1e0d2f6695243349d16713f863045d 100644
|
| --- a/Source/core/animation/animatable/AnimatableShapeValue.h
|
| +++ b/Source/core/animation/animatable/AnimatableShapeValue.h
|
| @@ -36,7 +36,7 @@
|
|
|
| namespace blink {
|
|
|
| -class AnimatableShapeValue FINAL : public AnimatableValue {
|
| +class AnimatableShapeValue final : public AnimatableValue {
|
| public:
|
| virtual ~AnimatableShapeValue() { }
|
| static PassRefPtrWillBeRawPtr<AnimatableShapeValue> create(ShapeValue* shape)
|
| @@ -45,11 +45,11 @@ public:
|
| }
|
| ShapeValue* shapeValue() const { return m_shape.get(); }
|
|
|
| - virtual void trace(Visitor* visitor) OVERRIDE { AnimatableValue::trace(visitor); }
|
| + virtual void trace(Visitor* visitor) override { AnimatableValue::trace(visitor); }
|
|
|
| protected:
|
| - virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
|
| - virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
|
| + virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
|
| + virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
|
|
|
| private:
|
| AnimatableShapeValue(ShapeValue* shape)
|
| @@ -57,8 +57,8 @@ private:
|
| {
|
| ASSERT(m_shape);
|
| }
|
| - virtual AnimatableType type() const OVERRIDE { return TypeShapeValue; }
|
| - virtual bool equalTo(const AnimatableValue*) const OVERRIDE;
|
| + virtual AnimatableType type() const override { return TypeShapeValue; }
|
| + virtual bool equalTo(const AnimatableValue*) const override;
|
|
|
| RefPtr<ShapeValue> m_shape;
|
| };
|
|
|