Index: Source/core/animation/LengthPairStyleInterpolation.h |
diff --git a/Source/core/animation/LengthPairStyleInterpolation.h b/Source/core/animation/LengthPairStyleInterpolation.h |
index 7f20355f69a73234643d2814c34708d0954af669..ed8e119cc80f44695f7b57d9b5e75a386c6f9098 100644 |
--- a/Source/core/animation/LengthPairStyleInterpolation.h |
+++ b/Source/core/animation/LengthPairStyleInterpolation.h |
@@ -23,13 +23,13 @@ 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 PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToLengthPair(InterpolableValue*, InterpolationRange); |
+ static PassOwnPtr<InterpolableValue> lengthPairToInterpolableValue(const CSSValue&); |
+ static PassRefPtr<CSSValue> interpolableValueToLengthPair(InterpolableValue*, InterpolationRange); |
InterpolationRange m_range; |