| Index: sky/engine/platform/scroll/ScrollableArea.cpp
|
| diff --git a/sky/engine/platform/scroll/ScrollableArea.cpp b/sky/engine/platform/scroll/ScrollableArea.cpp
|
| index 587c7f569455f4b13eeb8e9cd6fd9b0c02ffcd64..1ba68b0b723d872d0902f8b8e9f0904adce0f007 100644
|
| --- a/sky/engine/platform/scroll/ScrollableArea.cpp
|
| +++ b/sky/engine/platform/scroll/ScrollableArea.cpp
|
| @@ -235,23 +235,6 @@ bool ScrollableArea::hasOverlayScrollbars() const
|
| return hScrollbar && hScrollbar->isOverlayScrollbar();
|
| }
|
|
|
| -bool ScrollableArea::scheduleAnimation()
|
| -{
|
| - WTF_LOG(ScriptedAnimationController, "ScrollableArea::scheduleAnimation: window = %d",
|
| - hostWindow() ? 1 : 0);
|
| - if (HostWindow* window = hostWindow()) {
|
| - window->scheduleAnimation();
|
| - return true;
|
| - }
|
| - return false;
|
| -}
|
| -
|
| -void ScrollableArea::serviceScrollAnimations(double monotonicTime)
|
| -{
|
| - if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
|
| - scrollAnimator->serviceScrollAnimations();
|
| -}
|
| -
|
| IntPoint ScrollableArea::clampScrollPosition(const IntPoint& scrollPosition) const
|
| {
|
| return scrollPosition.shrunkTo(maximumScrollPosition()).expandedTo(minimumScrollPosition());
|
|
|