Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: third_party/WebKit/Source/platform/scroll/ProgrammaticScrollAnimator.cpp

Issue 1548883002: Revert of Run smooth scroll animations on the compositor when possible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "platform/scroll/ProgrammaticScrollAnimator.h" 6 #include "platform/scroll/ProgrammaticScrollAnimator.h"
7 7
8 #include "platform/geometry/IntPoint.h" 8 #include "platform/geometry/IntPoint.h"
9 #include "platform/graphics/GraphicsLayer.h" 9 #include "platform/graphics/GraphicsLayer.h"
10 #include "platform/scroll/ScrollableArea.h" 10 #include "platform/scroll/ScrollableArea.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 WebScrollOffsetAnimationCurve::ScrollDurationDeltaBased)); 58 WebScrollOffsetAnimationCurve::ScrollDurationDeltaBased));
59 59
60 m_scrollableArea->registerForAnimation(); 60 m_scrollableArea->registerForAnimation();
61 if (!m_scrollableArea->scheduleAnimation()) { 61 if (!m_scrollableArea->scheduleAnimation()) {
62 resetAnimationState(); 62 resetAnimationState();
63 notifyPositionChanged(IntPoint(offset.x(), offset.y())); 63 notifyPositionChanged(IntPoint(offset.x(), offset.y()));
64 } 64 }
65 m_runState = RunState::WaitingToSendToCompositor; 65 m_runState = RunState::WaitingToSendToCompositor;
66 } 66 }
67 67
68 void ProgrammaticScrollAnimator::cancelAnimation()
69 {
70 ASSERT(m_runState != RunState::RunningOnCompositorButNeedsUpdate);
71 ScrollAnimatorCompositorCoordinator::cancelAnimation();
72 }
73
74 void ProgrammaticScrollAnimator::tickAnimation(double monotonicTime) 68 void ProgrammaticScrollAnimator::tickAnimation(double monotonicTime)
75 { 69 {
76 if (m_runState != RunState::RunningOnMainThread) 70 if (m_runState != RunState::RunningOnMainThread)
77 return; 71 return;
78 72
79 if (!m_startTime) 73 if (!m_startTime)
80 m_startTime = monotonicTime; 74 m_startTime = monotonicTime;
81 double elapsedTime = monotonicTime - m_startTime; 75 double elapsedTime = monotonicTime - m_startTime;
82 bool isFinished = (elapsedTime > m_animationCurve->duration()); 76 bool isFinished = (elapsedTime > m_animationCurve->duration());
83 FloatPoint offset = m_animationCurve->getValue(elapsedTime); 77 FloatPoint offset = m_animationCurve->getValue(elapsedTime);
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 m_scrollableArea->registerForAnimation(); 148 m_scrollableArea->registerForAnimation();
155 if (!m_scrollableArea->scheduleAnimation()) { 149 if (!m_scrollableArea->scheduleAnimation()) {
156 resetAnimationState(); 150 resetAnimationState();
157 notifyPositionChanged(IntPoint(m_targetOffset.x(), m_targetOffset.y( ))); 151 notifyPositionChanged(IntPoint(m_targetOffset.x(), m_targetOffset.y( )));
158 } 152 }
159 } 153 }
160 } 154 }
161 155
162 void ProgrammaticScrollAnimator::notifyCompositorAnimationFinished(int groupId) 156 void ProgrammaticScrollAnimator::notifyCompositorAnimationFinished(int groupId)
163 { 157 {
164 ASSERT(m_runState != RunState::RunningOnCompositorButNeedsUpdate);
165 ScrollAnimatorCompositorCoordinator::compositorAnimationFinished(groupId); 158 ScrollAnimatorCompositorCoordinator::compositorAnimationFinished(groupId);
166 } 159 }
167 160
168 DEFINE_TRACE(ProgrammaticScrollAnimator) 161 DEFINE_TRACE(ProgrammaticScrollAnimator)
169 { 162 {
170 visitor->trace(m_scrollableArea); 163 visitor->trace(m_scrollableArea);
171 ScrollAnimatorCompositorCoordinator::trace(visitor); 164 ScrollAnimatorCompositorCoordinator::trace(visitor);
172 } 165 }
173 166
174 } // namespace blink 167 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698