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

Unified Diff: Source/core/animation/CSSValueInterpolationType.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/AnimationTimeline.h ('k') | Source/core/animation/ColorStyleInterpolation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/CSSValueInterpolationType.h
diff --git a/Source/core/animation/CSSValueInterpolationType.h b/Source/core/animation/CSSValueInterpolationType.h
index 77e6edf1a7775d6a81a662c784065b3de15c4d3e..568fee7e7a991f7004e7cf2843dbb97e988f5d80 100644
--- a/Source/core/animation/CSSValueInterpolationType.h
+++ b/Source/core/animation/CSSValueInterpolationType.h
@@ -17,13 +17,13 @@ public:
: InterpolationType(property)
{ }
- virtual PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertSingle(const CSSPropertySpecificKeyframe&, const StyleResolverState*, ConversionCheckers&) const override final;
- virtual void apply(const InterpolableValue&, const NonInterpolableValue*, StyleResolverState&) const override final;
+ PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertSingle(const CSSPropertySpecificKeyframe&, const StyleResolverState*, ConversionCheckers&) const final;
+ void apply(const InterpolableValue&, const NonInterpolableValue*, StyleResolverState&) const final;
};
class DefaultNonInterpolableValue : public NonInterpolableValue {
public:
- virtual ~DefaultNonInterpolableValue() { }
+ ~DefaultNonInterpolableValue() override { }
static PassRefPtrWillBeRawPtr<DefaultNonInterpolableValue> create(PassRefPtrWillBeRawPtr<CSSValue> cssValue)
{
return adoptRefWillBeNoop(new DefaultNonInterpolableValue(cssValue));
« no previous file with comments | « Source/core/animation/AnimationTimeline.h ('k') | Source/core/animation/ColorStyleInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698