OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 MOJO_SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ | 5 #ifndef SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ |
6 #define MOJO_SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ | 6 #define SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/scoped_vector.h" | 11 #include "base/memory/scoped_vector.h" |
12 #include "mojo/public/cpp/application/application_delegate.h" | 12 #include "mojo/public/cpp/application/application_delegate.h" |
13 #include "mojo/public/cpp/application/interface_factory_impl.h" | 13 #include "mojo/public/cpp/application/interface_factory_impl.h" |
14 #include "mojo/public/cpp/bindings/binding.h" | 14 #include "mojo/public/cpp/bindings/binding.h" |
15 #include "mojo/public/cpp/bindings/string.h" | 15 #include "mojo/public/cpp/bindings/string.h" |
16 #include "mojo/services/public/cpp/view_manager/types.h" | 16 #include "mojo/services/public/cpp/view_manager/types.h" |
17 #include "mojo/services/public/cpp/view_manager/view_manager_client_factory.h" | 17 #include "mojo/services/public/cpp/view_manager/view_manager_client_factory.h" |
18 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h" | 18 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h" |
19 #include "mojo/services/public/cpp/view_manager/view_observer.h" | 19 #include "mojo/services/public/cpp/view_manager/view_observer.h" |
20 #include "mojo/services/public/interfaces/window_manager/window_manager_internal
.mojom.h" | 20 #include "mojo/services/public/interfaces/window_manager/window_manager_internal
.mojom.h" |
21 #include "mojo/services/window_manager/focus_controller_observer.h" | 21 #include "services/window_manager/focus_controller_observer.h" |
22 #include "mojo/services/window_manager/native_viewport_event_dispatcher_impl.h" | 22 #include "services/window_manager/native_viewport_event_dispatcher_impl.h" |
23 #include "mojo/services/window_manager/view_target.h" | 23 #include "services/window_manager/view_target.h" |
24 #include "mojo/services/window_manager/window_manager_impl.h" | 24 #include "services/window_manager/window_manager_impl.h" |
25 #include "ui/events/event_handler.h" | 25 #include "ui/events/event_handler.h" |
26 | 26 |
27 namespace gfx { | 27 namespace gfx { |
28 class Size; | 28 class Size; |
29 } | 29 } |
30 | 30 |
31 namespace mojo { | 31 namespace mojo { |
32 | 32 |
33 class FocusController; | 33 class FocusController; |
34 class FocusRules; | 34 class FocusRules; |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 | 171 |
172 scoped_ptr<ViewEventDispatcher> view_event_dispatcher_; | 172 scoped_ptr<ViewEventDispatcher> view_event_dispatcher_; |
173 | 173 |
174 scoped_ptr<Binding<WindowManagerInternal>> wm_internal_binding_; | 174 scoped_ptr<Binding<WindowManagerInternal>> wm_internal_binding_; |
175 | 175 |
176 DISALLOW_COPY_AND_ASSIGN(WindowManagerApp); | 176 DISALLOW_COPY_AND_ASSIGN(WindowManagerApp); |
177 }; | 177 }; |
178 | 178 |
179 } // namespace mojo | 179 } // namespace mojo |
180 | 180 |
181 #endif // MOJO_SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ | 181 #endif // SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ |
OLD | NEW |