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/sequenced_task_runner.h" |
19 #include "base/time/time.h" | 20 #include "base/time/time.h" |
20 #include "cc/base/synced_property.h" | 21 #include "cc/base/synced_property.h" |
21 #include "cc/benchmarks/micro_benchmark_controller_impl.h" | 22 #include "cc/benchmarks/micro_benchmark_controller_impl.h" |
22 #include "cc/cc_export.h" | 23 #include "cc/cc_export.h" |
23 #include "cc/input/browser_controls_offset_manager_client.h" | 24 #include "cc/input/browser_controls_offset_manager_client.h" |
24 #include "cc/input/input_handler.h" | 25 #include "cc/input/input_handler.h" |
25 #include "cc/input/scrollbar_animation_controller.h" | 26 #include "cc/input/scrollbar_animation_controller.h" |
26 #include "cc/layers/layer_collections.h" | 27 #include "cc/layers/layer_collections.h" |
27 #include "cc/output/begin_frame_args.h" | 28 #include "cc/output/begin_frame_args.h" |
28 #include "cc/output/compositor_frame_sink_client.h" | 29 #include "cc/output/compositor_frame_sink_client.h" |
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
877 bool touchpad_and_wheel_scroll_latching_enabled_; | 878 bool touchpad_and_wheel_scroll_latching_enabled_; |
878 | 879 |
879 ImplThreadPhase impl_thread_phase_; | 880 ImplThreadPhase impl_thread_phase_; |
880 | 881 |
881 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 882 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
882 }; | 883 }; |
883 | 884 |
884 } // namespace cc | 885 } // namespace cc |
885 | 886 |
886 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 887 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
OLD | NEW |