| Index: third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp
|
| index 91f5a2a444d6a044b91102e7dea558207d061c87..3c053b8fd196645e23281cf616af2766ac2a98ca 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSPathInterpolationType.cpp
|
| @@ -5,6 +5,7 @@
|
| #include "core/animation/CSSPathInterpolationType.h"
|
|
|
| #include "core/animation/PathInterpolationFunctions.h"
|
| +#include "core/css/CSSIdentifierValue.h"
|
| #include "core/css/CSSPathValue.h"
|
| #include "core/css/resolver/StyleResolverState.h"
|
| #include "wtf/PtrUtil.h"
|
| @@ -87,7 +88,7 @@ InterpolationValue CSSPathInterpolationType::maybeConvertValue(
|
| const StyleResolverState& state,
|
| ConversionCheckers& conversionCheckers) const {
|
| if (!value.isPathValue()) {
|
| - DCHECK_EQ(toCSSPrimitiveValue(value).getValueID(), CSSValueNone);
|
| + DCHECK_EQ(toCSSIdentifierValue(value).getValueID(), CSSValueNone);
|
| return nullptr;
|
| }
|
| return PathInterpolationFunctions::convertValue(
|
|
|