| Index: Source/core/animation/DoubleStyleInterpolation.h
|
| diff --git a/Source/core/animation/DoubleStyleInterpolation.h b/Source/core/animation/DoubleStyleInterpolation.h
|
| index 88a659d765f2a826224201b8da2bcd375161e103..735ca2232f7c21f77e82f17bbaafc9a01b69c33f 100644
|
| --- a/Source/core/animation/DoubleStyleInterpolation.h
|
| +++ b/Source/core/animation/DoubleStyleInterpolation.h
|
| @@ -28,22 +28,22 @@ public:
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(const CSSValue&, CSSPropertyID = CSSPropertyInvalid);
|
| - static PassRefPtrWillBeRawPtr<CSSValue> fromInterpolableValue(const InterpolableValue&, InterpolationRange);
|
| + static PassOwnPtr<InterpolableValue> toInterpolableValue(const CSSValue&, CSSPropertyID = CSSPropertyInvalid);
|
| + static PassRefPtr<CSSValue> fromInterpolableValue(const InterpolableValue&, InterpolationRange);
|
|
|
| private:
|
| - DoubleStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id, bool isNumber, InterpolationRange clamp, bool flag)
|
| + DoubleStyleInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, CSSPropertyID id, bool isNumber, InterpolationRange clamp, bool flag)
|
| : StyleInterpolation(start, end, id)
|
| , m_isNumber(isNumber)
|
| , m_clamp(clamp)
|
| , m_flag(flag)
|
| { }
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> doubleToInterpolableValue(const CSSValue&);
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> motionRotationToInterpolableValue(const CSSValue&);
|
| + 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 PassRefPtr<CSSValue> interpolableValueToDouble(const InterpolableValue*, bool, InterpolationRange);
|
| + static PassRefPtr<CSSValue> interpolableValueToMotionRotation(InterpolableValue*, bool);
|
|
|
| bool m_isNumber;
|
| InterpolationRange m_clamp;
|
|
|