diff options
Diffstat (limited to 'chromium/cc/animation/animation.h')
-rw-r--r-- | chromium/cc/animation/animation.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/chromium/cc/animation/animation.h b/chromium/cc/animation/animation.h index 7fa4136d591..6cc50117d1f 100644 --- a/chromium/cc/animation/animation.h +++ b/chromium/cc/animation/animation.h @@ -65,17 +65,6 @@ class CC_ANIMATION_EXPORT Animation : public base::RefCounted<Animation> { } void SetAnimationTimeline(AnimationTimeline* timeline); - // TODO(yigu): There is a reverse dependency between AnimationTimeline and - // Animation. ScrollTimeline update should be handled by AnimationHost instead - // of Animation. This could be fixed once the snapshotting in blink is - // implemented. https://crbug.com/1023508. - - // Should be called when the ScrollTimeline attached to this animation has a - // change, such as when the scroll source changes ElementId. - void UpdateScrollTimeline(base::Optional<ElementId> scroller_id, - base::Optional<double> start_scroll_offset, - base::Optional<double> end_scroll_offset); - scoped_refptr<ElementAnimations> element_animations() const; void set_animation_delegate(AnimationDelegate* delegate) { @@ -118,7 +107,6 @@ class CC_ANIMATION_EXPORT Animation : public base::RefCounted<Animation> { // to be dispatched. void DispatchAndDelegateAnimationEvent(const AnimationEvent& event); - size_t TickingKeyframeModelsCount() const; bool AffectsCustomProperty() const; void SetNeedsPushProperties(); @@ -151,7 +139,6 @@ class CC_ANIMATION_EXPORT Animation : public base::RefCounted<Animation> { explicit Animation(int id); Animation(int id, std::unique_ptr<KeyframeEffect>); virtual ~Animation(); - void TickWithLocalTime(base::TimeDelta local_time); AnimationHost* animation_host_; AnimationTimeline* animation_timeline_; |