| Index: Source/core/animation/LengthBoxStyleInterpolation.h
|
| diff --git a/Source/core/animation/LengthBoxStyleInterpolation.h b/Source/core/animation/LengthBoxStyleInterpolation.h
|
| index 2057fb945b0f5a629b8ca1efcfa58cd32d82f78a..208328750f6b0cb7f579097e98a3c17c9d302dd6 100644
|
| --- a/Source/core/animation/LengthBoxStyleInterpolation.h
|
| +++ b/Source/core/animation/LengthBoxStyleInterpolation.h
|
| @@ -14,7 +14,7 @@ namespace blink {
|
|
|
| class CORE_EXPORT LengthBoxStyleInterpolation : public StyleInterpolation {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<LengthBoxStyleInterpolation> maybeCreateFrom(CSSValue&, CSSValue&, CSSPropertyID);
|
| + static LengthBoxStyleInterpolation* maybeCreateFrom(CSSValue&, CSSValue&, CSSPropertyID);
|
|
|
| static bool usesDefaultInterpolation(const CSSValue&, const CSSValue&);
|
|
|
| @@ -22,13 +22,13 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - LengthBoxStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> startInterpolation, PassOwnPtrWillBeRawPtr<InterpolableValue> endInterpolation, CSSPropertyID id, CSSValue* startCSS, CSSValue* endCSS)
|
| + LengthBoxStyleInterpolation(InterpolableValue* startInterpolation, 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 InterpolableValue* lengthBoxtoInterpolableValue(const CSSValue&, const CSSValue&, bool);
|
| static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToLengthBox(InterpolableValue*, const CSSValue&, const CSSValue&);
|
|
|
| RefPtrWillBeMember<CSSValue> m_startCSSValue;
|
|
|