| Index: Source/platform/animation/AnimationValue.h
|
| diff --git a/Source/platform/animation/AnimationValue.h b/Source/platform/animation/AnimationValue.h
|
| index 016c93eb32462cae650afe0744f091f43ff91091..ac91d90908739f98232a728c58ec752f9ab11a6b 100644
|
| --- a/Source/platform/animation/AnimationValue.h
|
| +++ b/Source/platform/animation/AnimationValue.h
|
| @@ -67,7 +67,7 @@ public:
|
| , m_value(value)
|
| {
|
| }
|
| - virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new FloatAnimationValue(*this)); }
|
| + virtual PassOwnPtr<AnimationValue> clone() const override { return adoptPtr(new FloatAnimationValue(*this)); }
|
|
|
| float value() const { return m_value; }
|
|
|
| @@ -84,7 +84,7 @@ public:
|
| if (value)
|
| m_value = *value;
|
| }
|
| - virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new TransformAnimationValue(*this)); }
|
| + virtual PassOwnPtr<AnimationValue> clone() const override { return adoptPtr(new TransformAnimationValue(*this)); }
|
|
|
| const TransformOperations* value() const { return &m_value; }
|
|
|
| @@ -101,7 +101,7 @@ public:
|
| if (value)
|
| m_value = *value;
|
| }
|
| - virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new FilterAnimationValue(*this)); }
|
| + virtual PassOwnPtr<AnimationValue> clone() const override { return adoptPtr(new FilterAnimationValue(*this)); }
|
|
|
| const FilterOperations* value() const { return &m_value; }
|
|
|
|
|