Index: Source/core/animation/animatable/AnimatableTransform.h |
diff --git a/Source/core/animation/animatable/AnimatableTransform.h b/Source/core/animation/animatable/AnimatableTransform.h |
index 76475385776645c34ce894d4cc95c6dd9f2d4774..3e8ebfca3e5657c6ad9e9e8ab1f0c8ad6b3f72d4 100644 |
--- a/Source/core/animation/animatable/AnimatableTransform.h |
+++ b/Source/core/animation/animatable/AnimatableTransform.h |
@@ -39,7 +39,7 @@ namespace blink { |
class CORE_EXPORT AnimatableTransform final : public AnimatableValue { |
public: |
- virtual ~AnimatableTransform() { } |
+ ~AnimatableTransform() override { } |
static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&); |
const TransformOperations& transformOperations() const |
{ |
@@ -49,15 +49,15 @@ public: |
DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); } |
protected: |
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override; |
+ 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; |
+ AnimatableType type() const override { return TypeTransform; } |
+ bool equalTo(const AnimatableValue*) const override; |
const TransformOperations m_transform; |
}; |