| Index: Source/core/animation/LengthStyleInterpolation.h
|
| diff --git a/Source/core/animation/LengthStyleInterpolation.h b/Source/core/animation/LengthStyleInterpolation.h
|
| index 7f6d34efa47de8977a4b1694d1c2b286117d952d..11d036424da93ed3bb48852b4cf07266aca9086a 100644
|
| --- a/Source/core/animation/LengthStyleInterpolation.h
|
| +++ b/Source/core/animation/LengthStyleInterpolation.h
|
| @@ -18,16 +18,16 @@ public:
|
|
|
| static PassRefPtrWillBeRawPtr<LengthStyleInterpolation> create(const CSSValue& start, const CSSValue& end, CSSPropertyID id, InterpolationRange range)
|
| {
|
| - return adoptRefWillBeNoop(new LengthStyleInterpolation(toInterpolableValue(start), toInterpolableValue(end), id, range));
|
| + return adoptRefWillBeNoop(new LengthStyleInterpolation(toInterpolableValue(start, id), toInterpolableValue(end, id), id, range));
|
| }
|
|
|
| - static bool canCreateFrom(const CSSValue&);
|
| + static bool canCreateFrom(const CSSValue&, CSSPropertyID = CSSPropertyInvalid);
|
|
|
| virtual void apply(StyleResolverState&) const override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(const CSSValue&);
|
| + static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(const CSSValue&, CSSPropertyID = CSSPropertyInvalid);
|
| static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> fromInterpolableValue(const InterpolableValue&, InterpolationRange);
|
|
|
| private:
|
|
|