| Index: third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp
|
| index b70e44fa19272a3d3a03099b3a3ac12e2b7770ef..5d7f689fee7cc3fd5a10ef6e4c3e56806bc5353a 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp
|
| @@ -22,10 +22,10 @@ InterpolationValue SVGAngleInterpolationType::maybeConvertSVGValue(const SVGProp
|
| return InterpolationValue(InterpolableNumber::create(toSVGAngle(svgValue).value()));
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGAngleInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| +RawPtr<SVGPropertyBase> SVGAngleInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| {
|
| double doubleValue = toInterpolableNumber(interpolableValue).value();
|
| - RefPtrWillBeRawPtr<SVGAngle> result = SVGAngle::create();
|
| + RawPtr<SVGAngle> result = SVGAngle::create();
|
| result->newValueSpecifiedUnits(SVGAngle::SVG_ANGLETYPE_DEG, doubleValue);
|
| return result.release();
|
| }
|
|
|