diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-24 18:17:53 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-24 18:17:53 +0000 |
commit | f68c14642a91a765ed6874e4868606afe1b08e40 (patch) | |
tree | 050120e681468fe42bb986cf10e6665335a3d328 /content/content_ppapi_plugin.gypi | |
parent | c0b5b764bba1ad79606b48a76d3c215b63730a1e (diff) | |
download | chromium_src-f68c14642a91a765ed6874e4868606afe1b08e40.zip chromium_src-f68c14642a91a765ed6874e4868606afe1b08e40.tar.gz chromium_src-f68c14642a91a765ed6874e4868606afe1b08e40.tar.bz2 |
Move Mojo channel initialization closer to IPC::Channel setup
This CL introduces two new content classes:
- MojoApplicationHost encapsulates what's needed to host a Mojo App using Chrome IPC to bootstrap.
- MojoApplication represents what's needed to be a Mojo App using Chrome IPC to bootstrap.
The RenderProcess and RenderProcessHost interfaces are replaced with WebUISetup and WebUISetupClient interfaces. This way the interface is more specific to the service of setting up WebUI.
WebUISetupClient is empty and uninteresting. RenderProcessHostImpl no longer deals with WebUI setup. That is all done directly by RenderViewHostImpl by talking to the WebUISetup service.
Service names get defined in content/common/mojo/mojo_service_names.{h,cc}.
TBR=sky@chromium.org, tsepez@chromium.org
Originally reviewed at https://codereview.chromium.org/236813002/
Review URL: https://codereview.chromium.org/256403004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@265962 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_ppapi_plugin.gypi')
-rw-r--r-- | content/content_ppapi_plugin.gypi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/content_ppapi_plugin.gypi b/content/content_ppapi_plugin.gypi index 578ffd0..0757a7d 100644 --- a/content/content_ppapi_plugin.gypi +++ b/content/content_ppapi_plugin.gypi @@ -7,6 +7,7 @@ ['enable_plugins==1', { 'dependencies': [ '../base/base.gyp:base', + '../mojo/mojo.gyp:mojo_shell_bindings', '../ppapi/ppapi_internal.gyp:ppapi_ipc', '../ui/base/ui_base.gyp:ui_base', '../ui/gfx/gfx.gyp:gfx', |