Index: Source/core/animation/IntegerSVGInterpolation.h |
diff --git a/Source/core/animation/IntegerSVGInterpolation.h b/Source/core/animation/IntegerSVGInterpolation.h |
index 53187e8e383f5aff7f29d62aac3e115a2d810218..d831042cca0d3d44b3c77b6639ca9e22080b32ae 100644 |
--- a/Source/core/animation/IntegerSVGInterpolation.h |
+++ b/Source/core/animation/IntegerSVGInterpolation.h |
@@ -28,12 +28,12 @@ public: |
} |
private: |
- IntegerSVGInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute) |
+ IntegerSVGInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute) |
: SVGInterpolation(start, end, attribute) |
{ |
} |
- static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(SVGPropertyBase* value) |
+ static PassOwnPtr<InterpolableValue> toInterpolableValue(SVGPropertyBase* value) |
{ |
return InterpolableNumber::create(toSVGInteger(value)->value()); |
} |