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/layer_tree_impl.h" | 5 #include "cc/layer_tree_impl.h" |
6 | 6 |
7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
8 #include "cc/heads_up_display_layer_impl.h" | 8 #include "cc/heads_up_display_layer_impl.h" |
9 #include "cc/layer_tree_host_common.h" | 9 #include "cc/layer_tree_host_common.h" |
10 #include "cc/layer_tree_host_impl.h" | 10 #include "cc/layer_tree_host_impl.h" |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 } | 347 } |
348 | 348 |
349 Proxy* LayerTreeImpl::proxy() const { | 349 Proxy* LayerTreeImpl::proxy() const { |
350 return layer_tree_host_impl_->proxy(); | 350 return layer_tree_host_impl_->proxy(); |
351 } | 351 } |
352 | 352 |
353 const LayerTreeSettings& LayerTreeImpl::settings() const { | 353 const LayerTreeSettings& LayerTreeImpl::settings() const { |
354 return layer_tree_host_impl_->settings(); | 354 return layer_tree_host_impl_->settings(); |
355 } | 355 } |
356 | 356 |
| 357 const RendererCapabilities& LayerTreeImpl::rendererCapabilities() const { |
| 358 return layer_tree_host_impl_->rendererCapabilities(); |
| 359 } |
| 360 |
357 OutputSurface* LayerTreeImpl::output_surface() const { | 361 OutputSurface* LayerTreeImpl::output_surface() const { |
358 return layer_tree_host_impl_->outputSurface(); | 362 return layer_tree_host_impl_->outputSurface(); |
359 } | 363 } |
360 | 364 |
361 ResourceProvider* LayerTreeImpl::resource_provider() const { | 365 ResourceProvider* LayerTreeImpl::resource_provider() const { |
362 return layer_tree_host_impl_->resourceProvider(); | 366 return layer_tree_host_impl_->resourceProvider(); |
363 } | 367 } |
364 | 368 |
365 TileManager* LayerTreeImpl::tile_manager() const { | 369 TileManager* LayerTreeImpl::tile_manager() const { |
366 return layer_tree_host_impl_->tileManager(); | 370 return layer_tree_host_impl_->tileManager(); |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 | 446 |
443 DebugRectHistory* LayerTreeImpl::debug_rect_history() const { | 447 DebugRectHistory* LayerTreeImpl::debug_rect_history() const { |
444 return layer_tree_host_impl_->debugRectHistory(); | 448 return layer_tree_host_impl_->debugRectHistory(); |
445 } | 449 } |
446 | 450 |
447 AnimationRegistrar* LayerTreeImpl::animationRegistrar() const { | 451 AnimationRegistrar* LayerTreeImpl::animationRegistrar() const { |
448 return layer_tree_host_impl_->animationRegistrar(); | 452 return layer_tree_host_impl_->animationRegistrar(); |
449 } | 453 } |
450 | 454 |
451 } // namespace cc | 455 } // namespace cc |
OLD | NEW |