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_COMPOSITOR_BLIMP_COMPOSITOR_H_ | 5 #ifndef BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ |
6 #define BLIMP_CLIENT_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/input/blimp_input_manager.h" | 14 #include "blimp/client/feature/compositor/blimp_input_manager.h" |
15 #include "blimp/client/session/render_widget_feature.h" | 15 #include "blimp/client/feature/render_widget_feature.h" |
16 #include "cc/layers/layer_settings.h" | 16 #include "cc/layers/layer_settings.h" |
17 #include "cc/trees/layer_tree_host_client.h" | 17 #include "cc/trees/layer_tree_host_client.h" |
18 #include "cc/trees/layer_tree_settings.h" | 18 #include "cc/trees/layer_tree_settings.h" |
19 #include "cc/trees/remote_proto_channel.h" | 19 #include "cc/trees/remote_proto_channel.h" |
20 #include "ui/gfx/geometry/size.h" | 20 #include "ui/gfx/geometry/size.h" |
21 #include "ui/gfx/native_widget_types.h" | 21 #include "ui/gfx/native_widget_types.h" |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class SingleThreadTaskRunner; | 24 class SingleThreadTaskRunner; |
25 class Thread; | 25 class Thread; |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 // the manager to be handled by the client compositor for the current render | 175 // the manager to be handled by the client compositor for the current render |
176 // widget. | 176 // widget. |
177 scoped_ptr<BlimpInputManager> input_manager_; | 177 scoped_ptr<BlimpInputManager> input_manager_; |
178 | 178 |
179 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); | 179 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); |
180 }; | 180 }; |
181 | 181 |
182 } // namespace client | 182 } // namespace client |
183 } // namespace blimp | 183 } // namespace blimp |
184 | 184 |
185 #endif // BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_H_ | 185 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ |
OLD | NEW |