| Index: third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.cpp
|
| index bfe71c55daf54d91d585adad78a2e0c16f9b6eb6..b05b487622b5385423075e0aec1013a33db68993 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGIntegerInterpolationType.cpp
|
| @@ -21,7 +21,7 @@ InterpolationValue SVGIntegerInterpolationType::maybeConvertSVGValue(const SVGPr
|
| return InterpolationValue(InterpolableNumber::create(toSVGInteger(svgValue).value()));
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGIntegerInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| +RawPtr<SVGPropertyBase> SVGIntegerInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| {
|
| double value = toInterpolableNumber(interpolableValue).value();
|
| return SVGInteger::create(round(value));
|
|
|