| 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 93b0fe2d81363da7ed780636edfd5f5140c9ccd0..2aa79908998bb740205c5e21be280b45a934a9ff 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);
|
|
|