| Index: Source/core/animation/LengthPairStyleInterpolation.h
|
| diff --git a/Source/core/animation/LengthPairStyleInterpolation.h b/Source/core/animation/LengthPairStyleInterpolation.h
|
| index 7f20355f69a73234643d2814c34708d0954af669..bfa3271b5ee90ca0897ceafeb9cc317668422317 100644
|
| --- a/Source/core/animation/LengthPairStyleInterpolation.h
|
| +++ b/Source/core/animation/LengthPairStyleInterpolation.h
|
| @@ -13,9 +13,9 @@ namespace blink {
|
|
|
| class CORE_EXPORT LengthPairStyleInterpolation : public StyleInterpolation {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<LengthPairStyleInterpolation> create(const CSSValue& start, const CSSValue& end, CSSPropertyID id, InterpolationRange range)
|
| + static PassRefPtr<LengthPairStyleInterpolation> create(const CSSValue& start, const CSSValue& end, CSSPropertyID id, InterpolationRange range)
|
| {
|
| - return adoptRefWillBeNoop(new LengthPairStyleInterpolation(lengthPairToInterpolableValue(start), lengthPairToInterpolableValue(end), id, range));
|
| + return adoptRef(new LengthPairStyleInterpolation(lengthPairToInterpolableValue(start), lengthPairToInterpolableValue(end), id, range));
|
| }
|
|
|
| static bool canCreateFrom(const CSSValue&);
|
| @@ -23,12 +23,12 @@ public:
|
| void apply(StyleResolverState&) const override;
|
|
|
| private:
|
| - LengthPairStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id, InterpolationRange range)
|
| + LengthPairStyleInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, CSSPropertyID id, InterpolationRange range)
|
| : StyleInterpolation(start, end, id), m_range(range)
|
| {
|
| }
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> lengthPairToInterpolableValue(const CSSValue&);
|
| + static PassOwnPtr<InterpolableValue> lengthPairToInterpolableValue(const CSSValue&);
|
| static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToLengthPair(InterpolableValue*, InterpolationRange);
|
|
|
| InterpolationRange m_range;
|
|
|