diff options
author | sammc@chromium.org <sammc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-25 00:19:55 +0000 |
---|---|---|
committer | sammc@chromium.org <sammc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-25 00:19:55 +0000 |
commit | 3815009dde505d9a7372bef2465ccb37cb640520 (patch) | |
tree | c119393871cc4c49da5f4e0a3f3f07c5552d1ba7 /content/ppapi_plugin | |
parent | f1faeb003e654efaf5b50207383c56fce5d65d84 (diff) | |
download | chromium_src-3815009dde505d9a7372bef2465ccb37cb640520.zip chromium_src-3815009dde505d9a7372bef2465ccb37cb640520.tar.gz chromium_src-3815009dde505d9a7372bef2465ccb37cb640520.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
Review URL: https://codereview.chromium.org/285333003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@279557 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", |