| Index: third_party/WebKit/Source/core/animation/SVGIntegerOptionalIntegerInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGIntegerOptionalIntegerInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGIntegerOptionalIntegerInterpolationType.cpp
|
| index e775b5ca2b32bc50fd3ea2abd813790288517332..dd5d87c0101eeeba244fc404ed3a6f1c3ee06d47 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGIntegerOptionalIntegerInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGIntegerOptionalIntegerInterpolationType.cpp
|
| @@ -29,12 +29,12 @@ InterpolationValue SVGIntegerOptionalIntegerInterpolationType::maybeConvertSVGVa
|
| return InterpolationValue(result.release());
|
| }
|
|
|
| -static PassRefPtrWillBeRawPtr<SVGInteger> toPositiveInteger(const InterpolableValue* number)
|
| +static RawPtr<SVGInteger> toPositiveInteger(const InterpolableValue* number)
|
| {
|
| return SVGInteger::create(clampTo<int>(roundf(toInterpolableNumber(number)->value()), 1));
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGPropertyBase> SVGIntegerOptionalIntegerInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| +RawPtr<SVGPropertyBase> SVGIntegerOptionalIntegerInterpolationType::appliedSVGValue(const InterpolableValue& interpolableValue, const NonInterpolableValue*) const
|
| {
|
| const InterpolableList& list = toInterpolableList(interpolableValue);
|
| return SVGIntegerOptionalInteger::create(
|
|
|