| 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 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 bool need_to_update_visible_tiles_before_draw_; | 691 bool need_to_update_visible_tiles_before_draw_; |
| 692 | 692 |
| 693 // Optional callback to notify of new tree activations. | 693 // Optional callback to notify of new tree activations. |
| 694 base::Closure tree_activation_callback_; | 694 base::Closure tree_activation_callback_; |
| 695 | 695 |
| 696 SharedBitmapManager* shared_bitmap_manager_; | 696 SharedBitmapManager* shared_bitmap_manager_; |
| 697 int id_; | 697 int id_; |
| 698 | 698 |
| 699 std::set<SwapPromiseMonitor*> swap_promise_monitor_; | 699 std::set<SwapPromiseMonitor*> swap_promise_monitor_; |
| 700 | 700 |
| 701 size_t transfer_buffer_memory_limit_; | |
| 702 | |
| 703 std::vector<PictureLayerImpl*> picture_layers_; | 701 std::vector<PictureLayerImpl*> picture_layers_; |
| 704 std::vector<PictureLayerImpl::Pair> picture_layer_pairs_; | 702 std::vector<PictureLayerImpl::Pair> picture_layer_pairs_; |
| 705 | 703 |
| 706 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 704 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 707 }; | 705 }; |
| 708 | 706 |
| 709 } // namespace cc | 707 } // namespace cc |
| 710 | 708 |
| 711 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 709 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |