Index: Source/core/animation/LegacyStyleInterpolation.h |
diff --git a/Source/core/animation/LegacyStyleInterpolation.h b/Source/core/animation/LegacyStyleInterpolation.h |
index e2af5aa1c2df38276e728665bf69e22590236eb3..b2b536ced3d20fd71f88e5c2557e699a2e16b48c 100644 |
--- a/Source/core/animation/LegacyStyleInterpolation.h |
+++ b/Source/core/animation/LegacyStyleInterpolation.h |
@@ -17,18 +17,18 @@ public: |
return adoptRefWillBeNoop(new LegacyStyleInterpolation(InterpolableAnimatableValue::create(start), InterpolableAnimatableValue::create(end), id)); |
} |
- virtual void apply(StyleResolverState& state) const OVERRIDE |
+ virtual void apply(StyleResolverState& state) const override |
{ |
AnimatedStyleBuilder::applyProperty(m_id, state, currentValue().get()); |
} |
- virtual bool isLegacyStyleInterpolation() const OVERRIDE FINAL { return true; } |
+ virtual bool isLegacyStyleInterpolation() const override final { return true; } |
PassRefPtrWillBeRawPtr<AnimatableValue> currentValue() const |
{ |
return toInterpolableAnimatableValue(m_cachedValue.get())->value(); |
} |
- virtual void trace(Visitor* visitor) OVERRIDE |
+ virtual void trace(Visitor* visitor) override |
{ |
StyleInterpolation::trace(visitor); |
} |