| 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_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 5 #ifndef MOJO_SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ |
| 6 #define MOJO_SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 6 #define MOJO_SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "mojo/public/cpp/application/interface_factory.h" | 12 #include "mojo/public/cpp/application/interface_factory.h" |
| 13 #include "mojo/public/cpp/bindings/array.h" | 13 #include "mojo/public/cpp/bindings/array.h" |
| 14 #include "mojo/public/cpp/bindings/error_handler.h" | 14 #include "mojo/public/cpp/bindings/error_handler.h" |
| 15 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" | 15 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" |
| 16 #include "mojo/services/public/interfaces/window_manager/window_manager.mojom.h" | 16 #include "mojo/services/public/interfaces/window_manager/window_manager_internal
.mojom.h" |
| 17 #include "mojo/services/view_manager/display_manager.h" | 17 #include "mojo/services/view_manager/display_manager.h" |
| 18 #include "mojo/services/view_manager/ids.h" | 18 #include "mojo/services/view_manager/ids.h" |
| 19 #include "mojo/services/view_manager/server_view.h" | 19 #include "mojo/services/view_manager/server_view.h" |
| 20 #include "mojo/services/view_manager/server_view_delegate.h" | 20 #include "mojo/services/view_manager/server_view_delegate.h" |
| 21 #include "mojo/services/view_manager/view_manager_export.h" | 21 #include "mojo/services/view_manager/view_manager_export.h" |
| 22 | 22 |
| 23 namespace mojo { | 23 namespace mojo { |
| 24 | 24 |
| 25 class ApplicationConnection; | 25 class ApplicationConnection; |
| 26 | 26 |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 214 |
| 215 bool in_destructor_; | 215 bool in_destructor_; |
| 216 | 216 |
| 217 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); | 217 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); |
| 218 }; | 218 }; |
| 219 | 219 |
| 220 } // namespace service | 220 } // namespace service |
| 221 } // namespace mojo | 221 } // namespace mojo |
| 222 | 222 |
| 223 #endif // MOJO_SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ | 223 #endif // MOJO_SERVICES_VIEW_MANAGER_CONNECTION_MANAGER_H_ |
| OLD | NEW |