| Index: third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp
|
| index d7d72cbaa6db842d7b3ea7a489447011f278e1ec..f81103e164e9278c9234b4151ebbace69b77a7d0 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.cpp
|
| @@ -61,9 +61,9 @@ void SVGPointListInterpolationType::composite(UnderlyingValueOwner& underlyingVa
|
| underlyingValueOwner.set(*this, value);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGPointListInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| +RawPtr<SVGPropertyBase> SVGPointListInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| {
|
| - RefPtrWillBeRawPtr<SVGPointList> result = SVGPointList::create();
|
| + RawPtr<SVGPointList> result = SVGPointList::create();
|
|
|
| const InterpolableList& list = toInterpolableList(interpolableValue);
|
| ASSERT(list.length() % 2 == 0);
|
|
|