| Index: third_party/WebKit/Source/core/animation/SVGNumberInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGNumberInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGNumberInterpolationType.cpp
|
| index a7f2b27da58e3b8fa4e8fca75f9b419ff24022c7..a5284dbd5d15a8670a53d0f80f83d54ac22e497d 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGNumberInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGNumberInterpolationType.cpp
|
| @@ -23,7 +23,7 @@ InterpolationValue SVGNumberInterpolationType::maybeConvertSVGValue(const SVGPro
|
| return InterpolationValue(InterpolableNumber::create(toSVGNumber(svgValue).value()));
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGNumberInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| +RawPtr<SVGPropertyBase> SVGNumberInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| {
|
| double value = toInterpolableNumber(interpolableValue).value();
|
| return SVGNumber::create(m_isNonNegative && value < 0 ? 0 : value);
|
|
|