| 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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 // to unregister itself. | 465 // to unregister itself. |
| 466 void InsertSwapPromiseMonitor(SwapPromiseMonitor* monitor); | 466 void InsertSwapPromiseMonitor(SwapPromiseMonitor* monitor); |
| 467 void RemoveSwapPromiseMonitor(SwapPromiseMonitor* monitor); | 467 void RemoveSwapPromiseMonitor(SwapPromiseMonitor* monitor); |
| 468 | 468 |
| 469 void RegisterPictureLayerImpl(PictureLayerImpl* layer); | 469 void RegisterPictureLayerImpl(PictureLayerImpl* layer); |
| 470 void UnregisterPictureLayerImpl(PictureLayerImpl* layer); | 470 void UnregisterPictureLayerImpl(PictureLayerImpl* layer); |
| 471 | 471 |
| 472 void GetPictureLayerImplPairs(std::vector<PictureLayerImpl::Pair>* layers, | 472 void GetPictureLayerImplPairs(std::vector<PictureLayerImpl::Pair>* layers, |
| 473 bool need_valid_tile_priorities) const; | 473 bool need_valid_tile_priorities) const; |
| 474 | 474 |
| 475 void SetTopControlsLayoutHeight(float height); | |
| 476 | |
| 477 void SetRequiresHighResToDraw() { requires_high_res_to_draw_ = true; } | 475 void SetRequiresHighResToDraw() { requires_high_res_to_draw_ = true; } |
| 478 void ResetRequiresHighResToDraw() { requires_high_res_to_draw_ = false; } | 476 void ResetRequiresHighResToDraw() { requires_high_res_to_draw_ = false; } |
| 479 bool RequiresHighResToDraw() const { return requires_high_res_to_draw_; } | 477 bool RequiresHighResToDraw() const { return requires_high_res_to_draw_; } |
| 480 | 478 |
| 481 // Only valid for synchronous (non-scheduled) single-threaded case. | 479 // Only valid for synchronous (non-scheduled) single-threaded case. |
| 482 void SynchronouslyInitializeAllTiles(); | 480 void SynchronouslyInitializeAllTiles(); |
| 483 | 481 |
| 484 virtual void CreateResourceAndRasterWorkerPool( | 482 virtual void CreateResourceAndRasterWorkerPool( |
| 485 scoped_ptr<RasterWorkerPool>* raster_worker_pool, | 483 scoped_ptr<RasterWorkerPool>* raster_worker_pool, |
| 486 scoped_ptr<ResourcePool>* resource_pool, | 484 scoped_ptr<ResourcePool>* resource_pool, |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 | 705 |
| 708 bool requires_high_res_to_draw_; | 706 bool requires_high_res_to_draw_; |
| 709 bool required_for_draw_tile_is_top_of_raster_queue_; | 707 bool required_for_draw_tile_is_top_of_raster_queue_; |
| 710 | 708 |
| 711 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 709 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 712 }; | 710 }; |
| 713 | 711 |
| 714 } // namespace cc | 712 } // namespace cc |
| 715 | 713 |
| 716 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 714 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |