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

Side by Side Diff: cc/layer_tree_host.cc

Issue 11565022: Add API to route end of fling messages from WebLayerTreeView to InputHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add call to fake_proxy Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « cc/layer_tree_host.h ('k') | cc/proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 "cc/layer_tree_host.h" 5 #include "cc/layer_tree_host.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/debug/trace_event.h" 8 #include "base/debug/trace_event.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/string_number_conversions.h" 10 #include "base/string_number_conversions.h"
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 void LayerTreeHost::updateAnimations(base::TimeTicks frameBeginTime) 215 void LayerTreeHost::updateAnimations(base::TimeTicks frameBeginTime)
216 { 216 {
217 m_animating = true; 217 m_animating = true;
218 m_client->animate((frameBeginTime - base::TimeTicks()).InSecondsF()); 218 m_client->animate((frameBeginTime - base::TimeTicks()).InSecondsF());
219 animateLayers(frameBeginTime); 219 animateLayers(frameBeginTime);
220 m_animating = false; 220 m_animating = false;
221 221
222 m_renderingStats.numAnimationFrames++; 222 m_renderingStats.numAnimationFrames++;
223 } 223 }
224 224
225 void LayerTreeHost::didStopFlinging()
226 {
227 m_proxy->mainThreadHasStoppedFlinging();
228 }
229
225 void LayerTreeHost::layout() 230 void LayerTreeHost::layout()
226 { 231 {
227 m_client->layout(); 232 m_client->layout();
228 } 233 }
229 234
230 void LayerTreeHost::beginCommitOnImplThread(LayerTreeHostImpl* hostImpl) 235 void LayerTreeHost::beginCommitOnImplThread(LayerTreeHostImpl* hostImpl)
231 { 236 {
232 DCHECK(m_proxy->isImplThread()); 237 DCHECK(m_proxy->isImplThread());
233 TRACE_EVENT0("cc", "LayerTreeHost::commitTo"); 238 TRACE_EVENT0("cc", "LayerTreeHost::commitTo");
234 } 239 }
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 else 872 else
868 layer->notifyAnimationFinished(wallClockTime.ToDoubleT()); 873 layer->notifyAnimationFinished(wallClockTime.ToDoubleT());
869 } 874 }
870 } 875 }
871 876
872 for (size_t childIndex = 0; childIndex < layer->children().size(); ++childIn dex) 877 for (size_t childIndex = 0; childIndex < layer->children().size(); ++childIn dex)
873 setAnimationEventsRecursive(events, layer->children()[childIndex].get(), wallClockTime); 878 setAnimationEventsRecursive(events, layer->children()[childIndex].get(), wallClockTime);
874 } 879 }
875 880
876 } // namespace cc 881 } // namespace cc
OLDNEW
« no previous file with comments | « cc/layer_tree_host.h ('k') | cc/proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698