| Index: third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp
|
| index 1d1072d8fcc00e0860e57af2bb55bdf7ccc77d97..f9e48fa38d93dd249aaed8a720168d0cea48cda8 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGNumberListInterpolationType.cpp
|
| @@ -78,9 +78,9 @@ void SVGNumberListInterpolationType::composite(UnderlyingValueOwner& underlyingV
|
| underlyingList.getMutable(i)->scale(underlyingFraction);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGNumberListInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| +RawPtr<SVGPropertyBase> SVGNumberListInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| {
|
| - RefPtrWillBeRawPtr<SVGNumberList> result = SVGNumberList::create();
|
| + RawPtr<SVGNumberList> result = SVGNumberList::create();
|
| const InterpolableList& list = toInterpolableList(interpolableValue);
|
| for (size_t i = 0; i < list.length(); i++)
|
| result->append(SVGNumber::create(toInterpolableNumber(list.get(i))->value()));
|
|
|