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