| 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_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_H_ |
| 6 #define CC_TREES_LAYER_TREE_HOST_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_H_ |
| 7 | 7 |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <list> | 9 #include <list> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 scoped_refptr<Layer> outer_viewport_scroll_layer_; | 449 scoped_refptr<Layer> outer_viewport_scroll_layer_; |
| 450 | 450 |
| 451 LayerSelectionBound selection_start_; | 451 LayerSelectionBound selection_start_; |
| 452 LayerSelectionBound selection_end_; | 452 LayerSelectionBound selection_end_; |
| 453 | 453 |
| 454 SharedBitmapManager* shared_bitmap_manager_; | 454 SharedBitmapManager* shared_bitmap_manager_; |
| 455 | 455 |
| 456 ScopedPtrVector<SwapPromise> swap_promise_list_; | 456 ScopedPtrVector<SwapPromise> swap_promise_list_; |
| 457 std::set<SwapPromiseMonitor*> swap_promise_monitor_; | 457 std::set<SwapPromiseMonitor*> swap_promise_monitor_; |
| 458 | 458 |
| 459 // We associate work done in CalculateDrawProperties with a sequence number | |
| 460 // to avoid having to do extra walks to clear values. | |
| 461 int render_surface_layer_list_id_; | |
| 462 | |
| 463 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 459 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
| 464 }; | 460 }; |
| 465 | 461 |
| 466 } // namespace cc | 462 } // namespace cc |
| 467 | 463 |
| 468 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 464 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
| OLD | NEW |