Index: third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.h |
diff --git a/third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.h |
index 0c3c22246af75ff92073f10864d807f78e242606..a1f9bd5c2b0c726e10311b5043a3da7eef25f9f5 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.h |
+++ b/third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.h |
@@ -8,6 +8,7 @@ |
#include "core/animation/CSSInterpolationType.h" |
#include "core/animation/CSSLengthInterpolationType.h" |
#include "platform/Length.h" |
+#include "wtf/RefVector.h" |
namespace blink { |
@@ -20,10 +21,12 @@ |
void apply(const InterpolableValue&, const NonInterpolableValue*, InterpolationEnvironment&) const final; |
private: |
+ InterpolationValue maybeConvertLengthList(const RefVector<Length>*, float zoom) const; |
+ |
InterpolationValue maybeConvertNeutral(const InterpolationValue& underlying, ConversionCheckers&) const final; |
InterpolationValue maybeConvertInitial() const final; |
InterpolationValue maybeConvertInherit(const StyleResolverState&, ConversionCheckers&) const final; |
- virtual InterpolationValue maybeConvertValue(const CSSValue&, const StyleResolverState&, ConversionCheckers&) const; |
+ InterpolationValue maybeConvertValue(const CSSValue&, const StyleResolverState&, ConversionCheckers&) const final; |
PairwiseInterpolationValue mergeSingleConversions(InterpolationValue& start, InterpolationValue& end) const final; |