| 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_VIEW_MANAGER_VIEW_MANAGER_APP_H_ | 5 #ifndef COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_APP_H_ |
| 6 #define COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_APP_H_ | 6 #define COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_APP_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "components/view_manager/connection_manager_delegate.h" | 9 #include "components/view_manager/connection_manager_delegate.h" |
| 10 #include "components/view_manager/public/interfaces/view_manager.mojom.h" |
| 11 #include "components/window_manager/public/interfaces/window_manager_internal.mo
jom.h" |
| 10 #include "mojo/common/tracing_impl.h" | 12 #include "mojo/common/tracing_impl.h" |
| 11 #include "third_party/mojo/src/mojo/public/cpp/application/application_delegate.
h" | 13 #include "third_party/mojo/src/mojo/public/cpp/application/application_delegate.
h" |
| 12 #include "third_party/mojo/src/mojo/public/cpp/application/interface_factory.h" | 14 #include "third_party/mojo/src/mojo/public/cpp/application/interface_factory.h" |
| 13 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | 15 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" |
| 14 #include "third_party/mojo/src/mojo/public/cpp/bindings/error_handler.h" | 16 #include "third_party/mojo/src/mojo/public/cpp/bindings/error_handler.h" |
| 15 #include "third_party/mojo_services/src/view_manager/public/interfaces/view_mana
ger.mojom.h" | |
| 16 #include "third_party/mojo_services/src/window_manager/public/interfaces/window_
manager_internal.mojom.h" | |
| 17 | 17 |
| 18 namespace mojo { | 18 namespace mojo { |
| 19 class ApplicationImpl; | 19 class ApplicationImpl; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace view_manager { | 22 namespace view_manager { |
| 23 | 23 |
| 24 class ConnectionManager; | 24 class ConnectionManager; |
| 25 | 25 |
| 26 class ViewManagerApp | 26 class ViewManagerApp |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 mojo::WindowManagerInternalPtr wm_internal_; | 77 mojo::WindowManagerInternalPtr wm_internal_; |
| 78 scoped_ptr<ConnectionManager> connection_manager_; | 78 scoped_ptr<ConnectionManager> connection_manager_; |
| 79 mojo::TracingImpl tracing_; | 79 mojo::TracingImpl tracing_; |
| 80 | 80 |
| 81 DISALLOW_COPY_AND_ASSIGN(ViewManagerApp); | 81 DISALLOW_COPY_AND_ASSIGN(ViewManagerApp); |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace view_manager | 84 } // namespace view_manager |
| 85 | 85 |
| 86 #endif // COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_APP_H_ | 86 #endif // COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_APP_H_ |
| OLD | NEW |