summaryrefslogtreecommitdiffstats
path: root/mojo/public/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/public/interfaces')
-rw-r--r--mojo/public/interfaces/service_provider/service_provider.mojom7
1 files changed, 6 insertions, 1 deletions
diff --git a/mojo/public/interfaces/service_provider/service_provider.mojom b/mojo/public/interfaces/service_provider/service_provider.mojom
index ded593e..190c85c 100644
--- a/mojo/public/interfaces/service_provider/service_provider.mojom
+++ b/mojo/public/interfaces/service_provider/service_provider.mojom
@@ -8,7 +8,12 @@ module mojo {
interface ServiceProvider {
// Loads url. mojo:{service} will result in the user of the value of the
// --origin flag to the shell being used.
- ConnectToService(string url, string name, handle<message_pipe> client_handle);
+ ConnectToService(string service_url,
+ string service_name,
+ handle<message_pipe> client_handle,
+ // ignored for client making request, filled in by system for
+ // implementor.
+ string requestor_url);
};
}