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

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: More tests are added 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
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 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after
1350 } 1350 }
1351 1351
1352 void LayerTreeHost::set_surface_id_namespace(uint32_t id_namespace) { 1352 void LayerTreeHost::set_surface_id_namespace(uint32_t id_namespace) {
1353 surface_id_namespace_ = id_namespace; 1353 surface_id_namespace_ = id_namespace;
1354 } 1354 }
1355 1355
1356 SurfaceSequence LayerTreeHost::CreateSurfaceSequence() { 1356 SurfaceSequence LayerTreeHost::CreateSurfaceSequence() {
1357 return SurfaceSequence(surface_id_namespace_, next_surface_sequence_++); 1357 return SurfaceSequence(surface_id_namespace_, next_surface_sequence_++);
1358 } 1358 }
1359 1359
1360 void LayerTreeHost::SetChildrenNeedBeginFrames(
1361 bool children_need_begin_frames) const {
1362 proxy_->SetChildrenNeedBeginFrames(children_need_begin_frames);
1363 }
1364
1365 void LayerTreeHost::SendBeginFramesToChildren(
1366 const BeginFrameArgs& args) const {
1367 client_->SendBeginFramesToChildren(args);
1368 }
1369
1360 } // namespace cc 1370 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698