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

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

Issue 1215563002: Implement left property animation on InvalidatableStyleInterpolation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 6 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 | « no previous file | Source/core/animation/InterpolableValue.h » ('j') | Source/core/animation/InterpolationType.h » ('J')
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..5662efef47bd290210de1b689ca2abf57aee6afc 100644
--- a/Source/core/animation/CSSValueInterpolationType.h
+++ b/Source/core/animation/CSSValueInterpolationType.h
@@ -17,7 +17,18 @@ public:
: InterpolationType(property)
{ }
+ virtual PassOwnPtrWillBeRawPtr<PairwisePrimitiveInterpolation> maybeConvertPairwise(const CSSPropertySpecificKeyframe& startKeyframe, const CSSPropertySpecificKeyframe& endKeyframe, const StyleResolverState* state, ConversionCheckers&) const
+ {
+ return nullptr;
+ }
+
virtual PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertSingle(const CSSPropertySpecificKeyframe&, const StyleResolverState*, ConversionCheckers&) const override final;
+
+ virtual PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertUnderlyingValue(const StyleResolverState&) const override final
+ {
+ return nullptr;
+ }
+
virtual void apply(const InterpolableValue&, const NonInterpolableValue*, StyleResolverState&) const override final;
};
« no previous file with comments | « no previous file | Source/core/animation/InterpolableValue.h » ('j') | Source/core/animation/InterpolationType.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698