Index: Source/core/animation/FilterStyleInterpolation.h |
diff --git a/Source/core/animation/FilterStyleInterpolation.h b/Source/core/animation/FilterStyleInterpolation.h |
index 9e626d14745e72b68b585e0c1f792f08c744bf54..637be22bb4f06a0e898db5724b4d982c486ce8ba 100644 |
--- a/Source/core/animation/FilterStyleInterpolation.h |
+++ b/Source/core/animation/FilterStyleInterpolation.h |
@@ -15,15 +15,15 @@ public: |
typedef CSSValueID NonInterpolableType; |
typedef ListStyleInterpolationImpl<FilterStyleInterpolation, NonInterpolableType> FilterListStyleInterpolation; |
- static PassRefPtrWillBeRawPtr<FilterListStyleInterpolation> maybeCreateList(const CSSValue& start, const CSSValue& end, CSSPropertyID); |
+ static FilterListStyleInterpolation* maybeCreateList(const CSSValue& start, const CSSValue& end, CSSPropertyID); |
// The following are called by ListStyleInterpolation. |
static bool canCreateFrom(const CSSValue& start, const CSSValue& end); |
- static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(const CSSValue&, CSSValueID&); |
+ static InterpolableValue* toInterpolableValue(const CSSValue&, CSSValueID&); |
static PassRefPtrWillBeRawPtr<CSSFunctionValue> fromInterpolableValue(const InterpolableValue&, CSSValueID, InterpolationRange = RangeAll); |
private: |
- FilterStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id) |
+ FilterStyleInterpolation(InterpolableValue* start, InterpolableValue* end, CSSPropertyID id) |
: StyleInterpolation(start, end, id) |
{ |
} |