| 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 SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ | 5 #ifndef SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ |
| 6 #define 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/window_manager/public/interfaces/window_manager_internal
.mojom.h" |
| 21 #include "services/window_manager/focus_controller_observer.h" | 21 #include "services/window_manager/focus_controller_observer.h" |
| 22 #include "services/window_manager/native_viewport_event_dispatcher_impl.h" | 22 #include "services/window_manager/native_viewport_event_dispatcher_impl.h" |
| 23 #include "services/window_manager/view_target.h" | 23 #include "services/window_manager/view_target.h" |
| 24 #include "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 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 scoped_ptr<ViewEventDispatcher> view_event_dispatcher_; | 176 scoped_ptr<ViewEventDispatcher> view_event_dispatcher_; |
| 177 | 177 |
| 178 scoped_ptr<mojo::Binding<WindowManagerInternal>> wm_internal_binding_; | 178 scoped_ptr<mojo::Binding<WindowManagerInternal>> wm_internal_binding_; |
| 179 | 179 |
| 180 DISALLOW_COPY_AND_ASSIGN(WindowManagerApp); | 180 DISALLOW_COPY_AND_ASSIGN(WindowManagerApp); |
| 181 }; | 181 }; |
| 182 | 182 |
| 183 } // namespace window_manager | 183 } // namespace window_manager |
| 184 | 184 |
| 185 #endif // SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ | 185 #endif // SERVICES_WINDOW_MANAGER_WINDOW_MANAGER_APP_H_ |
| OLD | NEW |