| Index: third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp
|
| index b67fdbe4c18744750c17f5f04b6734be00cc2b69..0524f74f9c7be7b79b43a8cbf933e6c2a1865cc5 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp
|
| @@ -59,7 +59,7 @@ void SVGLengthListInterpolationType::composite(UnderlyingValueOwner& underlyingV
|
| underlyingValueOwner.set(*this, value);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGLengthListInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| +RawPtr<SVGPropertyBase> SVGLengthListInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| {
|
| ASSERT_NOT_REACHED();
|
| // This function is no longer called, because apply has been overridden.
|
| @@ -71,7 +71,7 @@ void SVGLengthListInterpolationType::apply(const InterpolableValue& interpolable
|
| SVGElement& element = environment.svgElement();
|
| SVGLengthContext lengthContext(&element);
|
|
|
| - RefPtrWillBeRawPtr<SVGLengthList> result = SVGLengthList::create(m_unitMode);
|
| + RawPtr<SVGLengthList> result = SVGLengthList::create(m_unitMode);
|
| const InterpolableList& list = toInterpolableList(interpolableValue);
|
| for (size_t i = 0; i < list.length(); i++) {
|
| result->append(SVGLengthInterpolationType::resolveInterpolableSVGLength(*list.get(i), lengthContext, m_unitMode, m_negativeValuesForbidden));
|
|
|