Index: Source/core/animation/animatable/AnimatableTransform.h |
diff --git a/Source/core/animation/animatable/AnimatableTransform.h b/Source/core/animation/animatable/AnimatableTransform.h |
index 47b1629b3e31ec971892467be3c89f9b6775a2d0..e75f54af15c879dc4eb9df80aae69fe01c9c3820 100644 |
--- a/Source/core/animation/animatable/AnimatableTransform.h |
+++ b/Source/core/animation/animatable/AnimatableTransform.h |
@@ -36,7 +36,7 @@ |
namespace blink { |
-class AnimatableTransform FINAL : public AnimatableValue { |
+class AnimatableTransform final : public AnimatableValue { |
public: |
virtual ~AnimatableTransform() { } |
static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&); |
@@ -45,18 +45,18 @@ public: |
return m_transform; |
} |
- 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 PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override; |
private: |
explicit AnimatableTransform(const TransformOperations& transform) |
: m_transform(transform) |
{ |
} |
- virtual AnimatableType type() const OVERRIDE { return TypeTransform; } |
- virtual bool equalTo(const AnimatableValue*) const OVERRIDE; |
+ virtual AnimatableType type() const override { return TypeTransform; } |
+ virtual bool equalTo(const AnimatableValue*) const override; |
const TransformOperations m_transform; |
}; |