| 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 454b44d995f2071faf984bd27f88261c95893f97..5eb7d9391f9c75c521452297b171c492e41e048e 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()));
|
|
|