diff options
author | sammc@chromium.org <sammc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-25 06:09:25 +0000 |
---|---|---|
committer | sammc@chromium.org <sammc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-25 06:09:25 +0000 |
commit | c52a141be92a438e61a5c1784f2ac10c2c5adb9e (patch) | |
tree | a323e3c770b343687523d156958450bdbeab940e /content/ppapi_plugin | |
parent | e07862b492e587392feb466d2604c34e99c7d314 (diff) | |
download | chromium_src-c52a141be92a438e61a5c1784f2ac10c2c5adb9e.zip chromium_src-c52a141be92a438e61a5c1784f2ac10c2c5adb9e.tar.gz chromium_src-c52a141be92a438e61a5c1784f2ac10c2c5adb9e.tar.bz2 |
Support exposing Mojo services between render frames, render threads, and their respective hosts.
This introduces ServiceRegistry as an abstraction around providing
services to and accessing services from a remote peer. In particular,
this adds peered service registries to RenderProcessHost and
RenderThread, and to RenderFrameHost and RenderFrame - the RenderFrame
setup is implemented using the RenderProcessHost/RenderThread
ServiceRegistry pair.
This replaces the existing WebUI handle setup by adding a webUI
controller service to the frame host registry and a corresponding
request for the webUI controller service to the frame registry.
BUG=386155
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=279557
Review URL: https://codereview.chromium.org/285333003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@279623 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r-- | content/ppapi_plugin/BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/ppapi_plugin/BUILD.gn b/content/ppapi_plugin/BUILD.gn index b27ae34..18f7b87 100644 --- a/content/ppapi_plugin/BUILD.gn +++ b/content/ppapi_plugin/BUILD.gn @@ -21,7 +21,7 @@ source_set("ppapi_plugin") { deps = [ "//base", "//content:export", - "//mojo/public/interfaces/service_provider", + "//mojo/public/interfaces/interface_provider", "//ppapi:ppapi_ipc", "//skia", "//third_party/icu", |