| Index: Source/core/animation/LengthBoxStyleInterpolation.h
|
| diff --git a/Source/core/animation/LengthBoxStyleInterpolation.h b/Source/core/animation/LengthBoxStyleInterpolation.h
|
| index 748dfc793ab32170870abdee331e2d2cf9a128b3..b134472c887029a334d3aef544bb94e7423d9b7a 100644
|
| --- a/Source/core/animation/LengthBoxStyleInterpolation.h
|
| +++ b/Source/core/animation/LengthBoxStyleInterpolation.h
|
| @@ -22,17 +22,17 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - LengthBoxStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> startInterpolation, PassOwnPtrWillBeRawPtr<InterpolableValue> endInterpolation, CSSPropertyID id, CSSValue* startCSS, CSSValue* endCSS)
|
| + LengthBoxStyleInterpolation(PassOwnPtr<InterpolableValue> startInterpolation, PassOwnPtr<InterpolableValue> endInterpolation, CSSPropertyID id, CSSValue* startCSS, CSSValue* endCSS)
|
| : StyleInterpolation(startInterpolation, endInterpolation, id)
|
| , m_startCSSValue(startCSS)
|
| , m_endCSSValue(endCSS)
|
| { }
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> lengthBoxtoInterpolableValue(const CSSValue&, const CSSValue&, bool);
|
| - static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToLengthBox(InterpolableValue*, const CSSValue&, const CSSValue&);
|
| + static PassOwnPtr<InterpolableValue> lengthBoxtoInterpolableValue(const CSSValue&, const CSSValue&, bool);
|
| + static PassRefPtr<CSSValue> interpolableValueToLengthBox(InterpolableValue*, const CSSValue&, const CSSValue&);
|
|
|
| - RefPtrWillBeMember<CSSValue> m_startCSSValue;
|
| - RefPtrWillBeMember<CSSValue> m_endCSSValue;
|
| + RefPtr<CSSValue> m_startCSSValue;
|
| + RefPtr<CSSValue> m_endCSSValue;
|
|
|
| friend class AnimationLengthBoxStyleInterpolationTest;
|
| };
|
|
|