diff options
author | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-04 22:34:12 +0000 |
---|---|---|
committer | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-04 22:34:12 +0000 |
commit | dba70348c05f177808e8a2b540a0ce995a56cd3a (patch) | |
tree | 195b6868b75fc9072110844254385847dc1934ed /mojo/public/interfaces | |
parent | 7189f7f71e868d910da86b594e4e66e603547f06 (diff) | |
download | chromium_src-dba70348c05f177808e8a2b540a0ce995a56cd3a.zip chromium_src-dba70348c05f177808e8a2b540a0ce995a56cd3a.tar.gz chromium_src-dba70348c05f177808e8a2b540a0ce995a56cd3a.tar.bz2 |
Add requestor_url to ConnectToService()
R=darin@chromium.org, darin
BUG=
Review URL: https://codereview.chromium.org/318773002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274937 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/public/interfaces')
-rw-r--r-- | mojo/public/interfaces/service_provider/service_provider.mojom | 7 |
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); }; } |