Index: Source/core/animation/InterpolationValue.h |
diff --git a/Source/core/animation/InterpolationValue.h b/Source/core/animation/InterpolationValue.h |
index 9d941a5f5d6ffb123010fc606f87d9df90d68583..b01e9e8530822bc9250b8b2d185830e7725fa5a4 100644 |
--- a/Source/core/animation/InterpolationValue.h |
+++ b/Source/core/animation/InterpolationValue.h |
@@ -27,7 +27,7 @@ struct InterpolationComponentValue { |
class InterpolationValue { |
public: |
- static PassOwnPtr<InterpolationValue> create(const InterpolationType& type, PassOwnPtr<InterpolableValue> interpolableValue, PassRefPtr<NonInterpolableValue> nonInterpolableValue = nullptr) |
+ static PassOwnPtr<InterpolationValue> create(const InterpolationType& type, PassOwnPtr<InterpolableValue> interpolableValue, PassRefPtrWillBeRawPtr<NonInterpolableValue> nonInterpolableValue = nullptr) |
{ |
return adoptPtr(new InterpolationValue(type, interpolableValue, nonInterpolableValue)); |
} |
@@ -45,7 +45,7 @@ public: |
private: |
- InterpolationValue(const InterpolationType& type, PassOwnPtr<InterpolableValue> interpolableValue, PassRefPtr<NonInterpolableValue> nonInterpolableValue) |
+ InterpolationValue(const InterpolationType& type, PassOwnPtr<InterpolableValue> interpolableValue, PassRefPtrWillBeRawPtr<NonInterpolableValue> nonInterpolableValue) |
: m_type(type) |
, m_component(interpolableValue, nonInterpolableValue) |
{ |