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

Side by Side Diff: webkit/compositor_bindings/web_layer_tree_view_impl.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
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 "web_layer_tree_view_impl.h" 5 #include "web_layer_tree_view_impl.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "cc/font_atlas.h" 8 #include "cc/font_atlas.h"
9 #include "cc/input_handler.h" 9 #include "cc/input_handler.h"
10 #include "cc/layer.h" 10 #include "cc/layer.h"
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 { 149 {
150 m_layerTreeHost->composite(); 150 m_layerTreeHost->composite();
151 } 151 }
152 152
153 void WebLayerTreeViewImpl::updateAnimations(double frameBeginTimeSeconds) 153 void WebLayerTreeViewImpl::updateAnimations(double frameBeginTimeSeconds)
154 { 154 {
155 base::TimeTicks frameBeginTime = base::TimeTicks::FromInternalValue(frameBeg inTimeSeconds * base::Time::kMicrosecondsPerSecond); 155 base::TimeTicks frameBeginTime = base::TimeTicks::FromInternalValue(frameBeg inTimeSeconds * base::Time::kMicrosecondsPerSecond);
156 m_layerTreeHost->updateAnimations(frameBeginTime); 156 m_layerTreeHost->updateAnimations(frameBeginTime);
157 } 157 }
158 158
159 void WebLayerTreeViewImpl::didStopFlinging()
160 {
161 m_layerTreeHost->didStopFlinging();
162 }
163
159 bool WebLayerTreeViewImpl::compositeAndReadback(void *pixels, const WebRect& rec t) 164 bool WebLayerTreeViewImpl::compositeAndReadback(void *pixels, const WebRect& rec t)
160 { 165 {
161 return m_layerTreeHost->compositeAndReadback(pixels, rect); 166 return m_layerTreeHost->compositeAndReadback(pixels, rect);
162 } 167 }
163 168
164 void WebLayerTreeViewImpl::finishAllRendering() 169 void WebLayerTreeViewImpl::finishAllRendering()
165 { 170 {
166 m_layerTreeHost->finishAllRendering(); 171 m_layerTreeHost->finishAllRendering();
167 } 172 }
168 173
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 { 280 {
276 m_client->didCompleteSwapBuffers(); 281 m_client->didCompleteSwapBuffers();
277 } 282 }
278 283
279 void WebLayerTreeViewImpl::scheduleComposite() 284 void WebLayerTreeViewImpl::scheduleComposite()
280 { 285 {
281 m_client->scheduleComposite(); 286 m_client->scheduleComposite();
282 } 287 }
283 288
284 } // namespace WebKit 289 } // namespace WebKit
OLDNEW
« no previous file with comments | « webkit/compositor_bindings/web_layer_tree_view_impl.h ('k') | webkit/compositor_bindings/web_to_ccinput_handler_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698