| Index: third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h
|
| diff --git a/third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h b/third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h
|
| index ecfc2a6897110549c883bfbdae6641aea97e058a..f460156c59f949b023ecd13a4e876e9e843a343c 100644
|
| --- a/third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h
|
| +++ b/third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h
|
| @@ -27,7 +27,7 @@ public:
|
| void apply(StyleResolverState&) const override;
|
|
|
| static PassOwnPtr<InterpolableValue> toInterpolableValue(const CSSValue&, CSSPropertyID = CSSPropertyInvalid);
|
| - static PassRefPtrWillBeRawPtr<CSSValue> fromInterpolableValue(const InterpolableValue&, InterpolationRange);
|
| + static RawPtr<CSSValue> fromInterpolableValue(const InterpolableValue&, InterpolationRange);
|
|
|
| private:
|
| DoubleStyleInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, CSSPropertyID id, bool isNumber, InterpolationRange clamp, bool flag)
|
| @@ -40,8 +40,8 @@ private:
|
| static PassOwnPtr<InterpolableValue> doubleToInterpolableValue(const CSSValue&);
|
| static PassOwnPtr<InterpolableValue> motionRotationToInterpolableValue(const CSSValue&);
|
|
|
| - static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToDouble(const InterpolableValue*, bool, InterpolationRange);
|
| - static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToMotionRotation(InterpolableValue*, bool);
|
| + static RawPtr<CSSValue> interpolableValueToDouble(const InterpolableValue*, bool, InterpolationRange);
|
| + static RawPtr<CSSValue> interpolableValueToMotionRotation(InterpolableValue*, bool);
|
|
|
| bool m_isNumber;
|
| InterpolationRange m_clamp;
|
|
|