Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(307)

Unified Diff: Source/core/animation/LegacyStyleInterpolation.h

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/animation/KeyframeEffectModel.h ('k') | Source/core/animation/LengthBoxStyleInterpolation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/LegacyStyleInterpolation.h
diff --git a/Source/core/animation/LegacyStyleInterpolation.h b/Source/core/animation/LegacyStyleInterpolation.h
index 276c9e4d47379533f757dc209b8dda5613e3ad1a..aceb97d6b844261d3dcc71dbf68058b6e8102aa7 100644
--- a/Source/core/animation/LegacyStyleInterpolation.h
+++ b/Source/core/animation/LegacyStyleInterpolation.h
@@ -17,12 +17,12 @@ public:
return adoptRefWillBeNoop(new LegacyStyleInterpolation(InterpolableAnimatableValue::create(start), InterpolableAnimatableValue::create(end), id));
}
- virtual void apply(StyleResolverState& state) const override
+ void apply(StyleResolverState& state) const override
{
AnimatedStyleBuilder::applyProperty(m_id, state, currentValue().get());
}
- virtual bool isLegacyStyleInterpolation() const override final { return true; }
+ bool isLegacyStyleInterpolation() const final { return true; }
PassRefPtrWillBeRawPtr<AnimatableValue> currentValue() const
{
return toInterpolableAnimatableValue(m_cachedValue.get())->value();
« no previous file with comments | « Source/core/animation/KeyframeEffectModel.h ('k') | Source/core/animation/LengthBoxStyleInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698