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 SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ | 5 #ifndef SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ |
6 #define SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ | 6 #define SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/scoped_vector.h" | 12 #include "base/memory/scoped_vector.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "mojo/public/cpp/bindings/interface_request.h" | 14 #include "mojo/public/cpp/bindings/interface_request.h" |
15 #include "mojo/public/interfaces/application/application.mojom.h" | 15 #include "mojo/public/interfaces/application/application.mojom.h" |
16 #include "mojo/public/interfaces/application/service_provider.mojom.h" | 16 #include "mojo/public/interfaces/application/service_provider.mojom.h" |
| 17 #include "mojo/runner/native_application_support.h" |
17 #include "mojo/services/network/public/interfaces/network_service.mojom.h" | 18 #include "mojo/services/network/public/interfaces/network_service.mojom.h" |
18 #include "mojo/shell/application_manager/application_loader.h" | 19 #include "mojo/shell/application_loader.h" |
19 #include "mojo/shell/application_manager/identity.h" | 20 #include "mojo/shell/identity.h" |
20 #include "mojo/shell/application_manager/native_runner.h" | 21 #include "mojo/shell/native_runner.h" |
21 #include "mojo/shell/native_application_support.h" | |
22 #include "url/gurl.h" | 22 #include "url/gurl.h" |
23 | 23 |
24 namespace base { | 24 namespace base { |
25 class FilePath; | 25 class FilePath; |
26 class SequencedWorkerPool; | 26 class SequencedWorkerPool; |
27 } | 27 } |
28 | 28 |
29 namespace mojo { | 29 namespace mojo { |
30 namespace shell { | 30 namespace shell { |
31 | 31 |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 bool disable_cache_; | 223 bool disable_cache_; |
224 base::WeakPtrFactory<ApplicationManager> weak_ptr_factory_; | 224 base::WeakPtrFactory<ApplicationManager> weak_ptr_factory_; |
225 | 225 |
226 DISALLOW_COPY_AND_ASSIGN(ApplicationManager); | 226 DISALLOW_COPY_AND_ASSIGN(ApplicationManager); |
227 }; | 227 }; |
228 | 228 |
229 } // namespace shell | 229 } // namespace shell |
230 } // namespace mojo | 230 } // namespace mojo |
231 | 231 |
232 #endif // SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ | 232 #endif // SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ |
OLD | NEW |