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/utility | |
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/utility')
-rw-r--r-- | content/utility/BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/utility/BUILD.gn b/content/utility/BUILD.gn index 1cc0ead..a15e64b 100644 --- a/content/utility/BUILD.gn +++ b/content/utility/BUILD.gn @@ -17,7 +17,7 @@ source_set("utility") { "//base", "//content:export", "//courgette:courgette_lib", - "//mojo/public/interfaces/service_provider", + "//mojo/public/interfaces/interface_provider", "//third_party/WebKit/public:blink_headers", ] } |