Index: Source/core/animation/LengthInterpolationType.h |
diff --git a/Source/core/animation/LengthInterpolationType.h b/Source/core/animation/LengthInterpolationType.h |
index c9f82fdbb7e48796c8d1579f9eb5b530073829bf..d3b01e3b6f7232792adb2dccbad206a973a382c8 100644 |
--- a/Source/core/animation/LengthInterpolationType.h |
+++ b/Source/core/animation/LengthInterpolationType.h |
@@ -10,6 +10,8 @@ |
namespace blink { |
+class ComputedStyle; |
+ |
class LengthInterpolationType : public InterpolationType { |
public: |
LengthInterpolationType(CSSPropertyID); |
@@ -18,6 +20,8 @@ public: |
void apply(const InterpolableValue&, const NonInterpolableValue*, StyleResolverState&) const final; |
private: |
+ float effectiveZoom(const ComputedStyle&) const; |
+ |
PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertLength(const Length&, float zoom) const; |
PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertNeutral() const final; |
PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertInitial() const final; |