Chromium Code Reviews| Index: mojo/public/interfaces/application/shell.mojom |
| diff --git a/mojo/public/interfaces/application/shell.mojom b/mojo/public/interfaces/application/shell.mojom |
| index 3cc90fc810cc90a55f8f749ad613d583a7b93aeb..aef0456b8475878f01071f9cc3e81561df0a085c 100644 |
| --- a/mojo/public/interfaces/application/shell.mojom |
| +++ b/mojo/public/interfaces/application/shell.mojom |
| @@ -11,7 +11,11 @@ import "mojo/public/interfaces/application/service_provider.mojom"; |
| // it's Shell interface to connect to other Applications. |
| [Client=Application] |
| interface Shell { |
| - // Loads url. mojo:{service} will result in the user of the value of the |
| + // Loads |application_url|. mojo:{service} will result in the user of the value of the |
| // --origin flag to the shell being used. |
| - ConnectToApplication(string? application_url, ServiceProvider&? provider); |
| + // |services| can be used to look up services provided by the application at |application_url|. |
| + // |exported_services| can be used to export services to the application at |application_url|. |
| + ConnectToApplication(string? application_url, |
| + ServiceProvider&? services, |
|
darin (slow to review)
2015/01/09 17:31:16
Ditto
|
| + ServiceProvider? exported_services); |
| }; |