| Index: third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h
|
| index 5e155453f905dba3e085736654757780582db7d9..d54218ca9693d704d7be4c29e0c4f7242b1a9b67 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h
|
| +++ b/third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h
|
| @@ -5,9 +5,9 @@
|
| #ifndef CSSTransformOriginInterpolationType_h
|
| #define CSSTransformOriginInterpolationType_h
|
|
|
| -#include "core/animation/CSSLengthInterpolationType.h"
|
| #include "core/animation/CSSLengthListInterpolationType.h"
|
| #include "core/animation/CSSPositionAxisListInterpolationType.h"
|
| +#include "core/animation/LengthInterpolationFunctions.h"
|
| #include "core/animation/ListInterpolationFunctions.h"
|
| #include "core/css/CSSValueList.h"
|
|
|
| @@ -28,7 +28,7 @@ private:
|
| const CSSValue& item = list.item(index);
|
| if (index < 2)
|
| return CSSPositionAxisListInterpolationType::convertPositionAxisCSSValue(item);
|
| - return CSSLengthInterpolationType::maybeConvertCSSValue(item);
|
| + return LengthInterpolationFunctions::maybeConvertCSSValue(item);
|
| });
|
| }
|
| };
|
|
|