| Index: services/service_manager/public/interfaces/service.mojom
|
| diff --git a/services/service_manager/public/interfaces/service.mojom b/services/service_manager/public/interfaces/service.mojom
|
| index 431e124caf4f6aeec44313e7ef46d3b31017582e..12ffb305f9e10a75faee430d477a711f530ec496 100644
|
| --- a/services/service_manager/public/interfaces/service.mojom
|
| +++ b/services/service_manager/public/interfaces/service.mojom
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -module shell.mojom;
|
| +module service_manager.mojom;
|
|
|
| import "services/service_manager/public/interfaces/capabilities.mojom";
|
| import "services/service_manager/public/interfaces/connector.mojom";
|
| @@ -12,33 +12,34 @@ import "services/service_manager/public/interfaces/interface_provider.mojom";
|
| // service), for which an instance is tracked. It allows the implementor to
|
| // receive lifecycle events and service inbound connection attempts.
|
| interface Service {
|
| - // Called by the shell once an instance for this application has been created.
|
| - // This method will be called exactly once before any other method is called.
|
| + // Called by the service manager once an instance for this service has been
|
| + // created. This method will be called exactly once before any other method is
|
| + // called.
|
| //
|
| // Parameters:
|
| //
|
| // identity
|
| - // The identity of this instance in the shell. Includes:
|
| + // The identity of this instance in the service manager. Includes:
|
| // * The resolved name used in the connection request that resulted in this
|
| // instance being initialized.
|
| - // * The user associated with this instance in the shell. This will never
|
| - // be kInheritUserID.
|
| + // * The user associated with this instance in the service manager. This
|
| + // will never be kInheritUserID.
|
| // * The instance group this instance belongs to.
|
| //
|
| // Response parameters:
|
| //
|
| // connector_request
|
| - // An optional Connector request for the shell to bind, allowing the
|
| - // initialized client to connect to others.
|
| + // An optional Connector request for the service manager to bind, allowing
|
| + // the initialized client to connect to others.
|
| //
|
| OnStart(Identity identity) => (Connector&? connector_request);
|
|
|
| // Called when another application attempts to open a connection to this
|
| // application. An application implements this method to complete the exchange
|
| // of interface implementations with the remote application. See also
|
| - // documentation in shell.mojom for Connect(). The application originating
|
| - // the request is referred to as the "source" and the one receiving the
|
| - // "target".
|
| + // documentation in service_manager.mojom for Connect(). The application
|
| + // originating the request is referred to as the "source" and the one
|
| + // receiving the "target".
|
| //
|
| // Parameters:
|
| //
|
|
|