| Index: third_party/WebKit/Source/core/animation/SVGInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGInterpolationType.cpp
|
| index 0b18d601d122aa0ee49004d6c4005cff36246e5c..f99ca0abceb55615d278d70432eff28ddf79fcc0 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGInterpolationType.cpp
|
| @@ -11,10 +11,10 @@
|
|
|
| namespace blink {
|
|
|
| -PassOwnPtr<InterpolationValue> SVGInterpolationType::maybeConvertSingle(const PropertySpecificKeyframe& keyframe, const InterpolationEnvironment& environment, const UnderlyingValue&, ConversionCheckers&) const
|
| +PassOwnPtr<InterpolationValue> SVGInterpolationType::maybeConvertSingle(const PropertySpecificKeyframe& keyframe, const InterpolationEnvironment& environment, const UnderlyingValue& underlyingValue, ConversionCheckers& conversionCheckers) const
|
| {
|
| if (keyframe.isNeutral())
|
| - return maybeConvertNeutral();
|
| + return maybeConvertNeutral(underlyingValue, conversionCheckers);
|
|
|
| RefPtrWillBeRawPtr<SVGPropertyBase> svgValue = environment.svgBaseValue().cloneForAnimation(toSVGPropertySpecificKeyframe(keyframe).value());
|
| return maybeConvertSVGValue(*svgValue);
|
|
|