OLD | NEW |
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 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1371 } | 1371 } |
1372 | 1372 |
1373 void LayerTreeHost::set_surface_id_namespace(uint32_t id_namespace) { | 1373 void LayerTreeHost::set_surface_id_namespace(uint32_t id_namespace) { |
1374 surface_id_namespace_ = id_namespace; | 1374 surface_id_namespace_ = id_namespace; |
1375 } | 1375 } |
1376 | 1376 |
1377 SurfaceSequence LayerTreeHost::CreateSurfaceSequence() { | 1377 SurfaceSequence LayerTreeHost::CreateSurfaceSequence() { |
1378 return SurfaceSequence(surface_id_namespace_, next_surface_sequence_++); | 1378 return SurfaceSequence(surface_id_namespace_, next_surface_sequence_++); |
1379 } | 1379 } |
1380 | 1380 |
| 1381 void LayerTreeHost::SetAuthoritativeVSyncInterval( |
| 1382 base::TimeDelta interval) const { |
| 1383 proxy_->SetAuthoritativeVSyncInterval(interval); |
| 1384 } |
| 1385 |
1381 void LayerTreeHost::SetChildrenNeedBeginFrames( | 1386 void LayerTreeHost::SetChildrenNeedBeginFrames( |
1382 bool children_need_begin_frames) const { | 1387 bool children_need_begin_frames) const { |
1383 proxy_->SetChildrenNeedBeginFrames(children_need_begin_frames); | 1388 proxy_->SetChildrenNeedBeginFrames(children_need_begin_frames); |
1384 } | 1389 } |
1385 | 1390 |
1386 void LayerTreeHost::SendBeginFramesToChildren( | 1391 void LayerTreeHost::SendBeginFramesToChildren( |
1387 const BeginFrameArgs& args) const { | 1392 const BeginFrameArgs& args) const { |
1388 client_->SendBeginFramesToChildren(args); | 1393 client_->SendBeginFramesToChildren(args); |
1389 } | 1394 } |
1390 | 1395 |
1391 } // namespace cc | 1396 } // namespace cc |
OLD | NEW |