| Index: Source/core/animation/ShadowStyleInterpolation.h
|
| diff --git a/Source/core/animation/ShadowStyleInterpolation.h b/Source/core/animation/ShadowStyleInterpolation.h
|
| index 606fd87e3c92cf713cb7ed22007b2ee4f3e00e88..ad34aeeba76b3efdfca71e069c698065e7741fd1 100644
|
| --- a/Source/core/animation/ShadowStyleInterpolation.h
|
| +++ b/Source/core/animation/ShadowStyleInterpolation.h
|
| @@ -21,25 +21,25 @@ public:
|
|
|
| static bool usesDefaultStyleInterpolation(const CSSValue& start, const CSSValue& end);
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(const CSSValue&, NonInterpolableType&);
|
| - static PassRefPtrWillBeRawPtr<CSSValue> fromInterpolableValue(const InterpolableValue&, NonInterpolableType, InterpolationRange = RangeAll);
|
| + static PassOwnPtr<InterpolableValue> toInterpolableValue(const CSSValue&, NonInterpolableType&);
|
| + static PassRefPtr<CSSValue> fromInterpolableValue(const InterpolableValue&, NonInterpolableType, InterpolationRange = RangeAll);
|
|
|
| private:
|
| - ShadowStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id)
|
| + ShadowStyleInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, CSSPropertyID id)
|
| : StyleInterpolation(start, end, id)
|
| {
|
| }
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> shadowToInterpolableValue(const CSSValue& value, NonInterpolableType& type)
|
| + static PassOwnPtr<InterpolableValue> shadowToInterpolableValue(const CSSValue& value, NonInterpolableType& type)
|
| {
|
| return toInterpolableValue(value, type);
|
| }
|
| - static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToShadow(const InterpolableValue& value, NonInterpolableType type, InterpolationRange range = RangeAll)
|
| + static PassRefPtr<CSSValue> interpolableValueToShadow(const InterpolableValue& value, NonInterpolableType type, InterpolationRange range = RangeAll)
|
| {
|
| return fromInterpolableValue(value, type, range);
|
| }
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> lengthToInterpolableValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue>);
|
| + static PassOwnPtr<InterpolableValue> lengthToInterpolableValue(PassRefPtr<CSSPrimitiveValue>);
|
|
|
| friend class AnimationShadowStyleInterpolationTest;
|
| };
|
|
|