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

Side by Side Diff: cc/trees/layer_tree_host.cc

Issue 723713003: cc: Add SetChildrenNeedBeginFrames() & SendBeginFramesToChildren() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 1 month 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
« no previous file with comments | « cc/trees/layer_tree_host.h ('k') | cc/trees/layer_tree_host_client.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/trees/layer_tree_host.h" 5 #include "cc/trees/layer_tree_host.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <stack> 8 #include <stack>
9 #include <string> 9 #include <string>
10 10
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after
1345 } 1345 }
1346 1346
1347 void LayerTreeHost::set_surface_id_namespace(uint32_t id_namespace) { 1347 void LayerTreeHost::set_surface_id_namespace(uint32_t id_namespace) {
1348 surface_id_namespace_ = id_namespace; 1348 surface_id_namespace_ = id_namespace;
1349 } 1349 }
1350 1350
1351 SurfaceSequence LayerTreeHost::CreateSurfaceSequence() { 1351 SurfaceSequence LayerTreeHost::CreateSurfaceSequence() {
1352 return SurfaceSequence(surface_id_namespace_, next_surface_sequence_++); 1352 return SurfaceSequence(surface_id_namespace_, next_surface_sequence_++);
1353 } 1353 }
1354 1354
1355 void LayerTreeHost::SetChildrenNeedBeginFrames(
1356 bool children_need_begin_frames) const {
1357 proxy_->SetChildrenNeedBeginFrames(children_need_begin_frames);
1358 }
1359
1360 void LayerTreeHost::SendBeginFramesToChildren(
1361 const BeginFrameArgs& args) const {
1362 client_->SendBeginFramesToChildren(args);
1363 }
1364
1355 } // namespace cc 1365 } // namespace cc
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host.h ('k') | cc/trees/layer_tree_host_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698