OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ | 5 #ifndef BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ |
6 #define BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ | 6 #define BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "blimp/client/blimp_client_export.h" | 13 #include "blimp/client/blimp_client_export.h" |
14 #include "blimp/client/feature/compositor/blimp_input_manager.h" | 14 #include "blimp/client/feature/compositor/blimp_input_manager.h" |
15 #include "cc/layers/layer_settings.h" | |
16 #include "cc/trees/layer_tree_host.h" | 15 #include "cc/trees/layer_tree_host.h" |
17 #include "cc/trees/layer_tree_host_client.h" | 16 #include "cc/trees/layer_tree_host_client.h" |
18 #include "cc/trees/layer_tree_settings.h" | 17 #include "cc/trees/layer_tree_settings.h" |
19 #include "cc/trees/remote_proto_channel.h" | 18 #include "cc/trees/remote_proto_channel.h" |
20 #include "ui/gfx/geometry/size.h" | 19 #include "ui/gfx/geometry/size.h" |
21 #include "ui/gfx/native_widget_types.h" | 20 #include "ui/gfx/native_widget_types.h" |
22 | 21 |
23 namespace base { | 22 namespace base { |
24 class SingleThreadTaskRunner; | 23 class SingleThreadTaskRunner; |
25 class Thread; | 24 class Thread; |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 // widget. | 211 // widget. |
213 scoped_ptr<BlimpInputManager> input_manager_; | 212 scoped_ptr<BlimpInputManager> input_manager_; |
214 | 213 |
215 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); | 214 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); |
216 }; | 215 }; |
217 | 216 |
218 } // namespace client | 217 } // namespace client |
219 } // namespace blimp | 218 } // namespace blimp |
220 | 219 |
221 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ | 220 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ |
OLD | NEW |