| Index: Source/core/animation/RectSVGInterpolation.cpp
|
| diff --git a/Source/core/animation/RectSVGInterpolation.cpp b/Source/core/animation/RectSVGInterpolation.cpp
|
| index 94f92befa78c50da50a7647cc395eb6ab59b6641..e732c0d66c2c2acba8381e2163eca5967bd3d7e5 100644
|
| --- a/Source/core/animation/RectSVGInterpolation.cpp
|
| +++ b/Source/core/animation/RectSVGInterpolation.cpp
|
| @@ -9,11 +9,11 @@
|
|
|
| namespace blink {
|
|
|
| -PassOwnPtrWillBeRawPtr<InterpolableValue> RectSVGInterpolation::toInterpolableValue(SVGPropertyBase* value)
|
| +PassOwnPtr<InterpolableValue> RectSVGInterpolation::toInterpolableValue(SVGPropertyBase* value)
|
| {
|
| RefPtrWillBeRawPtr<SVGRect> rect = toSVGRect(value);
|
| float element[] = { rect->x(), rect->y(), rect->width(), rect->height() };
|
| - OwnPtrWillBeRawPtr<InterpolableList> result = InterpolableList::create(WTF_ARRAY_LENGTH(element));
|
| + OwnPtr<InterpolableList> result = InterpolableList::create(WTF_ARRAY_LENGTH(element));
|
| for (size_t i = 0; i < WTF_ARRAY_LENGTH(element); i++) {
|
| result->set(i, InterpolableNumber::create(element[i]));
|
| }
|
|
|