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_SERVICE_MANAGER_SERVICE_MANAGER_H_ | 5 #ifndef SERVICES_SERVICE_MANAGER_SERVICE_MANAGER_H_ |
6 #define SERVICES_SERVICE_MANAGER_SERVICE_MANAGER_H_ | 6 #define SERVICES_SERVICE_MANAGER_SERVICE_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "mojo/public/cpp/bindings/binding_set.h" | 14 #include "mojo/public/cpp/bindings/binding_set.h" |
15 #include "mojo/public/cpp/bindings/interface_ptr_set.h" | 15 #include "mojo/public/cpp/bindings/interface_ptr_set.h" |
16 #include "services/service_manager/connect_params.h" | 16 #include "services/service_manager/connect_params.h" |
17 #include "services/service_manager/public/cpp/identity.h" | 17 #include "services/service_manager/public/cpp/identity.h" |
18 #include "services/service_manager/public/cpp/interface_factory.h" | |
19 #include "services/service_manager/public/cpp/interface_provider_spec.h" | 18 #include "services/service_manager/public/cpp/interface_provider_spec.h" |
20 #include "services/service_manager/public/interfaces/connector.mojom.h" | 19 #include "services/service_manager/public/interfaces/connector.mojom.h" |
21 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" | 20 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" |
22 #include "services/service_manager/public/interfaces/resolver.mojom.h" | 21 #include "services/service_manager/public/interfaces/resolver.mojom.h" |
23 #include "services/service_manager/public/interfaces/service.mojom.h" | 22 #include "services/service_manager/public/interfaces/service.mojom.h" |
24 #include "services/service_manager/public/interfaces/service_factory.mojom.h" | 23 #include "services/service_manager/public/interfaces/service_factory.mojom.h" |
25 #include "services/service_manager/public/interfaces/service_manager.mojom.h" | 24 #include "services/service_manager/public/interfaces/service_manager.mojom.h" |
26 #include "services/service_manager/runner/host/service_process_launcher.h" | 25 #include "services/service_manager/runner/host/service_process_launcher.h" |
27 #include "services/service_manager/service_overrides.h" | 26 #include "services/service_manager/service_overrides.h" |
28 | 27 |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 base::WeakPtrFactory<ServiceManager> weak_ptr_factory_; | 186 base::WeakPtrFactory<ServiceManager> weak_ptr_factory_; |
188 | 187 |
189 DISALLOW_COPY_AND_ASSIGN(ServiceManager); | 188 DISALLOW_COPY_AND_ASSIGN(ServiceManager); |
190 }; | 189 }; |
191 | 190 |
192 mojom::Connector::ConnectCallback EmptyConnectCallback(); | 191 mojom::Connector::ConnectCallback EmptyConnectCallback(); |
193 | 192 |
194 } // namespace service_manager | 193 } // namespace service_manager |
195 | 194 |
196 #endif // SERVICES_SERVICE_MANAGER_SERVICE_MANAGER_H_ | 195 #endif // SERVICES_SERVICE_MANAGER_SERVICE_MANAGER_H_ |
OLD | NEW |