| 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 82435d989bcd424ca7aac04e18fd8814df829d42..527d4a0720c88e401ac84665f4918b4060fd784c 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&) const
|
| {
|
| if (keyframe.isNeutral())
|
| - return maybeConvertNeutral();
|
| + return maybeConvertNeutral(underlyingValue);
|
|
|
| RefPtrWillBeRawPtr<SVGPropertyBase> svgValue = environment.svgBaseValue().cloneForAnimation(toSVGPropertySpecificKeyframe(keyframe).value());
|
| return maybeConvertSVGValue(*svgValue);
|
|
|