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 #ifndef CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 // to unregister itself. | 461 // to unregister itself. |
462 void InsertSwapPromiseMonitor(SwapPromiseMonitor* monitor); | 462 void InsertSwapPromiseMonitor(SwapPromiseMonitor* monitor); |
463 void RemoveSwapPromiseMonitor(SwapPromiseMonitor* monitor); | 463 void RemoveSwapPromiseMonitor(SwapPromiseMonitor* monitor); |
464 | 464 |
465 void RegisterPictureLayerImpl(PictureLayerImpl* layer); | 465 void RegisterPictureLayerImpl(PictureLayerImpl* layer); |
466 void UnregisterPictureLayerImpl(PictureLayerImpl* layer); | 466 void UnregisterPictureLayerImpl(PictureLayerImpl* layer); |
467 | 467 |
468 void GetPictureLayerImplPairs(std::vector<PictureLayerImpl::Pair>* layers, | 468 void GetPictureLayerImplPairs(std::vector<PictureLayerImpl::Pair>* layers, |
469 bool need_valid_tile_priorities) const; | 469 bool need_valid_tile_priorities) const; |
470 | 470 |
471 void SetTopControlsLayoutHeight(float height); | 471 void SetTopControlsHeight(float height); |
| 472 void SetTopControlsShrinkBlinkSize(bool shrink); |
472 | 473 |
473 void SetRequiresHighResToDraw() { requires_high_res_to_draw_ = true; } | 474 void SetRequiresHighResToDraw() { requires_high_res_to_draw_ = true; } |
474 void ResetRequiresHighResToDraw() { requires_high_res_to_draw_ = false; } | 475 void ResetRequiresHighResToDraw() { requires_high_res_to_draw_ = false; } |
475 bool RequiresHighResToDraw() const { return requires_high_res_to_draw_; } | 476 bool RequiresHighResToDraw() const { return requires_high_res_to_draw_; } |
476 | 477 |
477 // Only valid for synchronous (non-scheduled) single-threaded case. | 478 // Only valid for synchronous (non-scheduled) single-threaded case. |
478 void SynchronouslyInitializeAllTiles(); | 479 void SynchronouslyInitializeAllTiles(); |
479 | 480 |
480 bool CanUseZeroCopyRasterizer() const; | 481 bool CanUseZeroCopyRasterizer() const; |
481 bool CanUseOneCopyRasterizer() const; | 482 bool CanUseOneCopyRasterizer() const; |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 | 706 |
706 bool requires_high_res_to_draw_; | 707 bool requires_high_res_to_draw_; |
707 bool required_for_draw_tile_is_top_of_raster_queue_; | 708 bool required_for_draw_tile_is_top_of_raster_queue_; |
708 | 709 |
709 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 710 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
710 }; | 711 }; |
711 | 712 |
712 } // namespace cc | 713 } // namespace cc |
713 | 714 |
714 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 715 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
OLD | NEW |