| 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 COMPONENTS_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ | 5 #ifndef COMPONENTS_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ |
| 6 #define COMPONENTS_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ | 6 #define COMPONENTS_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 "components/view_manager/public/cpp/types.h" |
| 13 #include "components/view_manager/public/cpp/view_manager_client_factory.h" |
| 14 #include "components/view_manager/public/cpp/view_manager_delegate.h" |
| 15 #include "components/view_manager/public/cpp/view_observer.h" |
| 12 #include "components/window_manager/capture_controller_observer.h" | 16 #include "components/window_manager/capture_controller_observer.h" |
| 13 #include "components/window_manager/focus_controller_observer.h" | 17 #include "components/window_manager/focus_controller_observer.h" |
| 14 #include "components/window_manager/native_viewport_event_dispatcher_impl.h" | 18 #include "components/window_manager/native_viewport_event_dispatcher_impl.h" |
| 19 #include "components/window_manager/public/interfaces/window_manager_internal.mo
jom.h" |
| 15 #include "components/window_manager/view_target.h" | 20 #include "components/window_manager/view_target.h" |
| 16 #include "components/window_manager/window_manager_impl.h" | 21 #include "components/window_manager/window_manager_impl.h" |
| 17 #include "third_party/mojo/src/mojo/public/cpp/application/application_delegate.
h" | 22 #include "third_party/mojo/src/mojo/public/cpp/application/application_delegate.
h" |
| 18 #include "third_party/mojo/src/mojo/public/cpp/application/interface_factory_imp
l.h" | 23 #include "third_party/mojo/src/mojo/public/cpp/application/interface_factory_imp
l.h" |
| 19 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | 24 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" |
| 20 #include "third_party/mojo/src/mojo/public/cpp/bindings/string.h" | 25 #include "third_party/mojo/src/mojo/public/cpp/bindings/string.h" |
| 21 #include "third_party/mojo_services/src/view_manager/public/cpp/types.h" | |
| 22 #include "third_party/mojo_services/src/view_manager/public/cpp/view_manager_cli
ent_factory.h" | |
| 23 #include "third_party/mojo_services/src/view_manager/public/cpp/view_manager_del
egate.h" | |
| 24 #include "third_party/mojo_services/src/view_manager/public/cpp/view_observer.h" | |
| 25 #include "third_party/mojo_services/src/window_manager/public/interfaces/window_
manager_internal.mojom.h" | |
| 26 #include "ui/base/accelerators/accelerator_manager.h" | 26 #include "ui/base/accelerators/accelerator_manager.h" |
| 27 #include "ui/events/event_handler.h" | 27 #include "ui/events/event_handler.h" |
| 28 | 28 |
| 29 namespace gfx { | 29 namespace gfx { |
| 30 class Size; | 30 class Size; |
| 31 } | 31 } |
| 32 | 32 |
| 33 namespace window_manager { | 33 namespace window_manager { |
| 34 | 34 |
| 35 class CaptureController; | 35 class CaptureController; |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 scoped_ptr<ViewEventDispatcher> view_event_dispatcher_; | 204 scoped_ptr<ViewEventDispatcher> view_event_dispatcher_; |
| 205 | 205 |
| 206 scoped_ptr<mojo::Binding<WindowManagerInternal>> wm_internal_binding_; | 206 scoped_ptr<mojo::Binding<WindowManagerInternal>> wm_internal_binding_; |
| 207 | 207 |
| 208 DISALLOW_COPY_AND_ASSIGN(WindowManagerApp); | 208 DISALLOW_COPY_AND_ASSIGN(WindowManagerApp); |
| 209 }; | 209 }; |
| 210 | 210 |
| 211 } // namespace window_manager | 211 } // namespace window_manager |
| 212 | 212 |
| 213 #endif // COMPONENTS_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ | 213 #endif // COMPONENTS_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ |
| OLD | NEW |