| 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 SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_ROOT_H_ | 5 #ifndef SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_ROOT_H_ |
| 6 #define SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_ROOT_H_ | 6 #define SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_ROOT_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
| 10 #include "mojo/public/cpp/application/application_delegate.h" | 10 #include "mojo/public/cpp/application/application_delegate.h" |
| 11 #include "mojo/public/cpp/application/interface_factory_impl.h" | 11 #include "mojo/public/cpp/application/interface_factory_impl.h" |
| 12 #include "mojo/public/cpp/bindings/binding.h" | 12 #include "mojo/public/cpp/bindings/binding.h" |
| 13 #include "mojo/public/cpp/bindings/string.h" | 13 #include "mojo/public/cpp/bindings/string.h" |
| 14 #include "mojo/services/view_manager/public/cpp/types.h" | 14 #include "mojo/services/view_manager/cpp/types.h" |
| 15 #include "mojo/services/view_manager/public/cpp/view_manager_client_factory.h" | 15 #include "mojo/services/view_manager/cpp/view_manager_client_factory.h" |
| 16 #include "mojo/services/view_manager/public/cpp/view_manager_delegate.h" | 16 #include "mojo/services/view_manager/cpp/view_manager_delegate.h" |
| 17 #include "mojo/services/view_manager/public/cpp/view_observer.h" | 17 #include "mojo/services/view_manager/cpp/view_observer.h" |
| 18 #include "mojo/services/window_manager/public/interfaces/window_manager_internal
.mojom.h" | 18 #include "mojo/services/window_manager/interfaces/window_manager_internal.mojom.
h" |
| 19 #include "services/window_manager/capture_controller_observer.h" | 19 #include "services/window_manager/capture_controller_observer.h" |
| 20 #include "services/window_manager/focus_controller_observer.h" | 20 #include "services/window_manager/focus_controller_observer.h" |
| 21 #include "services/window_manager/native_viewport_event_dispatcher_impl.h" | 21 #include "services/window_manager/native_viewport_event_dispatcher_impl.h" |
| 22 #include "services/window_manager/view_target.h" | 22 #include "services/window_manager/view_target.h" |
| 23 #include "services/window_manager/window_manager_delegate.h" | 23 #include "services/window_manager/window_manager_delegate.h" |
| 24 #include "services/window_manager/window_manager_impl.h" | 24 #include "services/window_manager/window_manager_impl.h" |
| 25 #include "ui/base/accelerators/accelerator_manager.h" | 25 #include "ui/base/accelerators/accelerator_manager.h" |
| 26 #include "ui/events/event_handler.h" | 26 #include "ui/events/event_handler.h" |
| 27 | 27 |
| 28 namespace gfx { | 28 namespace gfx { |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 scoped_ptr<ViewEventDispatcher> view_event_dispatcher_; | 191 scoped_ptr<ViewEventDispatcher> view_event_dispatcher_; |
| 192 | 192 |
| 193 scoped_ptr<mojo::Binding<WindowManagerInternal>> wm_internal_binding_; | 193 scoped_ptr<mojo::Binding<WindowManagerInternal>> wm_internal_binding_; |
| 194 | 194 |
| 195 DISALLOW_COPY_AND_ASSIGN(WindowManagerRoot); | 195 DISALLOW_COPY_AND_ASSIGN(WindowManagerRoot); |
| 196 }; | 196 }; |
| 197 | 197 |
| 198 } // namespace window_manager | 198 } // namespace window_manager |
| 199 | 199 |
| 200 #endif // SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ | 200 #endif // SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ |
| OLD | NEW |