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 <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <bitset> | 10 #include <bitset> |
11 #include <memory> | 11 #include <memory> |
12 #include <set> | 12 #include <set> |
13 #include <string> | 13 #include <string> |
14 #include <unordered_map> | 14 #include <unordered_map> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "base/callback.h" | 17 #include "base/callback.h" |
18 #include "base/macros.h" | 18 #include "base/macros.h" |
19 #include "base/time/time.h" | 19 #include "base/time/time.h" |
20 #include "cc/base/cc_export.h" | |
21 #include "cc/base/synced_property.h" | 20 #include "cc/base/synced_property.h" |
| 21 #include "cc/cc_export.h" |
22 #include "cc/debug/micro_benchmark_controller_impl.h" | 22 #include "cc/debug/micro_benchmark_controller_impl.h" |
23 #include "cc/input/browser_controls_offset_manager_client.h" | 23 #include "cc/input/browser_controls_offset_manager_client.h" |
24 #include "cc/input/input_handler.h" | 24 #include "cc/input/input_handler.h" |
25 #include "cc/input/scrollbar_animation_controller.h" | 25 #include "cc/input/scrollbar_animation_controller.h" |
26 #include "cc/layers/layer_collections.h" | 26 #include "cc/layers/layer_collections.h" |
27 #include "cc/output/begin_frame_args.h" | 27 #include "cc/output/begin_frame_args.h" |
28 #include "cc/output/compositor_frame_sink_client.h" | 28 #include "cc/output/compositor_frame_sink_client.h" |
29 #include "cc/output/context_cache_controller.h" | 29 #include "cc/output/context_cache_controller.h" |
30 #include "cc/output/managed_memory_policy.h" | 30 #include "cc/output/managed_memory_policy.h" |
31 #include "cc/quads/render_pass.h" | 31 #include "cc/quads/render_pass.h" |
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 // These callbacks are stored here to be transfered to the main thread when we | 852 // These callbacks are stored here to be transfered to the main thread when we |
853 // begin main frame. These callbacks must only be called on the main thread. | 853 // begin main frame. These callbacks must only be called on the main thread. |
854 std::vector<base::Closure> completed_image_decode_callbacks_; | 854 std::vector<base::Closure> completed_image_decode_callbacks_; |
855 | 855 |
856 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 856 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
857 }; | 857 }; |
858 | 858 |
859 } // namespace cc | 859 } // namespace cc |
860 | 860 |
861 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 861 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
OLD | NEW |