OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_BLIMP_LAYER_TREE_HOST_REMOTE_H_ | 5 #ifndef CC_BLIMP_LAYER_TREE_HOST_REMOTE_H_ |
6 #define CC_BLIMP_LAYER_TREE_HOST_REMOTE_H_ | 6 #define CC_BLIMP_LAYER_TREE_HOST_REMOTE_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
11 #include "cc/blimp/remote_compositor_bridge_client.h" | 11 #include "cc/blimp/remote_compositor_bridge_client.h" |
12 #include "cc/debug/layer_tree_debug_state.h" | 12 #include "cc/debug/layer_tree_debug_state.h" |
| 13 #include "cc/surfaces/surface_sequence_generator.h" |
13 #include "cc/trees/layer_tree_host.h" | 14 #include "cc/trees/layer_tree_host.h" |
14 #include "cc/trees/layer_tree_settings.h" | 15 #include "cc/trees/layer_tree_settings.h" |
15 #include "cc/trees/surface_sequence_generator.h" | |
16 #include "cc/trees/swap_promise_manager.h" | 16 #include "cc/trees/swap_promise_manager.h" |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class SingleThreadTaskRunner; | 19 class SingleThreadTaskRunner; |
20 } // namespace base | 20 } // namespace base |
21 | 21 |
22 namespace cc { | 22 namespace cc { |
23 namespace proto { | 23 namespace proto { |
24 class LayerTreeHost; | 24 class LayerTreeHost; |
25 } // namespace proto | 25 } // namespace proto |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 SurfaceSequenceGenerator surface_sequence_generator_; | 148 SurfaceSequenceGenerator surface_sequence_generator_; |
149 | 149 |
150 base::WeakPtr<InputHandler> input_handler_weak_ptr_; | 150 base::WeakPtr<InputHandler> input_handler_weak_ptr_; |
151 | 151 |
152 base::WeakPtrFactory<LayerTreeHostRemote> weak_factory_; | 152 base::WeakPtrFactory<LayerTreeHostRemote> weak_factory_; |
153 }; | 153 }; |
154 | 154 |
155 } // namespace cc | 155 } // namespace cc |
156 | 156 |
157 #endif // CC_BLIMP_LAYER_TREE_HOST_REMOTE_H_ | 157 #endif // CC_BLIMP_LAYER_TREE_HOST_REMOTE_H_ |
OLD | NEW |