| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 module shell.mojom; | 5 module shell.mojom; |
| 6 | 6 |
| 7 import "services/shell/public/interfaces/connector.mojom"; | 7 import "services/shell/public/interfaces/connector.mojom"; |
| 8 | 8 |
| 9 struct ServiceInfo { | 9 struct ServiceInfo { |
| 10 uint32 id; | 10 uint32 id; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 OnInit(array<ServiceInfo> running_services); | 21 OnInit(array<ServiceInfo> running_services); |
| 22 | 22 |
| 23 // Called when the Service Manager has started tracking a Service. This | 23 // Called when the Service Manager has started tracking a Service. This |
| 24 // happens when the Service Manager first handles a request to launch the | 24 // happens when the Service Manager first handles a request to launch the |
| 25 // Service, before a process is created for it. | 25 // Service, before a process is created for it. |
| 26 OnServiceCreated(ServiceInfo service); | 26 OnServiceCreated(ServiceInfo service); |
| 27 | 27 |
| 28 // Called when a pid is available for the service. This could be because the | 28 // Called when a pid is available for the service. This could be because the |
| 29 // Service Manager created a process for it, or because an existing one was | 29 // Service Manager created a process for it, or because an existing one was |
| 30 // assigned to it. | 30 // assigned to it. |
| 31 OnServiceStarted(uint32 id, uint32 pid); | 31 OnServiceStarted(Identity identity, uint32 pid); |
| 32 | 32 |
| 33 // Called when the Service Manager has stopped tracking a service. (i.e. when | 33 // Called when the Service Manager has stopped tracking a service. (i.e. when |
| 34 // it has ended/quit). | 34 // it has ended/quit). |
| 35 OnServiceStopped(uint32 id); | 35 OnServiceStopped(Identity identity); |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 interface ServiceManager { | 38 interface ServiceManager { |
| 39 // The listener is removed when the |listener| pipe is closed. | 39 // The listener is removed when the |listener| pipe is closed. |
| 40 AddListener(ServiceManagerListener listener); | 40 AddListener(ServiceManagerListener listener); |
| 41 }; | 41 }; |
| OLD | NEW |