Index: third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h |
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h |
index 4654a7114eefd26f58fffe6690b4743dcd07beb6..d2a52df1aa5da759a75d73841459401dca6ccce6 100644 |
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h |
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableLengthPoint.h |
@@ -43,13 +43,6 @@ class AnimatableLengthPoint final : public AnimatableValue { |
PassRefPtr<AnimatableValue> y) { |
return adoptRef(new AnimatableLengthPoint(std::move(x), std::move(y))); |
} |
- const AnimatableValue* x() const { return m_x.get(); } |
- const AnimatableValue* y() const { return m_y.get(); } |
- |
- protected: |
- PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, |
- double fraction) const override; |
- bool usesDefaultInterpolationWith(const AnimatableValue*) const override; |
private: |
AnimatableLengthPoint(PassRefPtr<AnimatableValue> x, |