| Index: third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
|
| index 8401ab53876ef418944c0aac0703dca73e2e738c..5ba322953fba1705331338db8395f6b0ae564279 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
|
| @@ -90,12 +90,11 @@ InterpolationValue CSSPaintInterpolationType::maybeConvertValue(
|
|
|
| InterpolationValue
|
| CSSPaintInterpolationType::maybeConvertStandardPropertyUnderlyingValue(
|
| - const StyleResolverState& state) const {
|
| + const ComputedStyle& style) const {
|
| // TODO(alancutter): Support capturing and animating with the visited paint
|
| // color.
|
| StyleColor underlyingColor;
|
| - if (!PaintPropertyFunctions::getColor(cssProperty(), *state.style(),
|
| - underlyingColor))
|
| + if (!PaintPropertyFunctions::getColor(cssProperty(), style, underlyingColor))
|
| return nullptr;
|
| return InterpolationValue(
|
| CSSColorInterpolationType::createInterpolableColor(underlyingColor));
|
|
|