Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Unified Diff: services/service_manager/public/interfaces/service_manager.mojom

Issue 2425563004: Support reading multiple InterfaceProviderSpecs from manifests (Closed)
Patch Set: . Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: services/service_manager/public/interfaces/service_manager.mojom
diff --git a/services/service_manager/public/interfaces/service_manager.mojom b/services/service_manager/public/interfaces/service_manager.mojom
index 52a1d77d8f60bae157bd0fa822cda14a5d3dea82..3fc6672f137e7656092c50b3be4726193038bdd0 100644
--- a/services/service_manager/public/interfaces/service_manager.mojom
+++ b/services/service_manager/public/interfaces/service_manager.mojom
@@ -6,7 +6,7 @@ module service_manager.mojom;
import "services/service_manager/public/interfaces/connector.mojom";
-struct ServiceInfo {
+struct RunningServiceInfo {
uint32 id;
Identity identity;
uint32 pid;
@@ -18,12 +18,12 @@ interface ServiceManagerListener {
// Called once when the listener is added via
// ServiceManager::AddInstanceListener() to provide the initial list of
// services that the listener observes changes against.
- OnInit(array<ServiceInfo> running_services);
+ OnInit(array<RunningServiceInfo> running_services);
// Called when the Service Manager has started tracking a Service. This
// happens when the Service Manager first handles a request to launch the
// Service, before a process is created for it.
- OnServiceCreated(ServiceInfo service);
+ OnServiceCreated(RunningServiceInfo service);
// Called when a pid is available for the service. This could be because the
// Service Manager created a process for it, or because an existing one was
« no previous file with comments | « services/service_manager/public/interfaces/service.mojom ('k') | services/service_manager/service_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698