Index: Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp |
diff --git a/Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp b/Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp |
index 3b559b0e80443a8216943363cb9bd52898ea3bb4..74c0a598785b67b34bac660aed8f544ed7587b11 100644 |
--- a/Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp |
+++ b/Source/core/animation/IntegerOptionalIntegerSVGInterpolation.cpp |
@@ -20,13 +20,13 @@ PassRefPtrWillBeRawPtr<SVGInteger> toPositiveInteger(const InterpolableValue* nu |
} // namespace |
-PassOwnPtrWillBeRawPtr<InterpolableValue> IntegerOptionalIntegerSVGInterpolation::toInterpolableValue(SVGPropertyBase* value) |
+InterpolableValue* IntegerOptionalIntegerSVGInterpolation::toInterpolableValue(SVGPropertyBase* value) |
{ |
RefPtrWillBeRawPtr<SVGIntegerOptionalInteger> integerOptionalInteger = toSVGIntegerOptionalInteger(value); |
- OwnPtrWillBeRawPtr<InterpolableList> result = InterpolableList::create(2); |
+ InterpolableList* result = InterpolableList::create(2); |
result->set(0, InterpolableNumber::create(integerOptionalInteger->firstInteger()->value())); |
result->set(1, InterpolableNumber::create(integerOptionalInteger->secondInteger()->value())); |
- return result.release(); |
+ return result; |
} |
PassRefPtrWillBeRawPtr<SVGIntegerOptionalInteger> IntegerOptionalIntegerSVGInterpolation::fromInterpolableValue(const InterpolableValue& value, int min) |