| Index: third_party/WebKit/Source/core/animation/CSSSizeListInterpolationType.h
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSSizeListInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSSizeListInterpolationType.h
|
| index fbd1eed5ef7f09106a1c10afae8722433a694d8c..824992e8a27ab65418496853842ec6562f763ccc 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSSizeListInterpolationType.h
|
| +++ b/third_party/WebKit/Source/core/animation/CSSSizeListInterpolationType.h
|
| @@ -5,8 +5,8 @@
|
| #ifndef CSSSizeListInterpolationType_h
|
| #define CSSSizeListInterpolationType_h
|
|
|
| -#include "core/animation/CSSLengthInterpolationType.h"
|
| #include "core/animation/CSSLengthListInterpolationType.h"
|
| +#include "core/animation/LengthInterpolationFunctions.h"
|
| #include "core/animation/ListInterpolationFunctions.h"
|
| #include "core/css/CSSValueList.h"
|
| #include "core/css/CSSValuePair.h"
|
| @@ -36,7 +36,8 @@ private:
|
| if (!item.isValuePair())
|
| return nullptr;
|
| const CSSValuePair& pair = toCSSValuePair(item);
|
| - return CSSLengthInterpolationType::maybeConvertCSSValue(index % 2 == 0 ? pair.first() : pair.second());
|
| + const CSSValue& side = index % 2 == 0 ? pair.first() : pair.second();
|
| + return LengthInterpolationFunctions::maybeConvertCSSValue(side);
|
| });
|
| }
|
| };
|
|
|