diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-08 06:38:45 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-08 06:38:45 +0000 |
commit | 1a78d9f39f364608a1a54b4274322e1ed4c2be9b (patch) | |
tree | 71ca778a5498c3e9e8c95e66013c74c80af13d33 /chrome/renderer/pepper_plugin_delegate_impl.h | |
parent | 13930f6c2d604b78faadd458ffcad121d434c421 (diff) | |
download | chromium_src-1a78d9f39f364608a1a54b4274322e1ed4c2be9b.zip chromium_src-1a78d9f39f364608a1a54b4274322e1ed4c2be9b.tar.gz chromium_src-1a78d9f39f364608a1a54b4274322e1ed4c2be9b.tar.bz2 |
Make webkit/glue/plugins no longer depend on ppapi/proxy directly. This causes
things that use webkit but otherwise don't need IPC to include the IPC
directory.
This patch moves the set-up of the proxy into the renderer. I also did a lot
of clean-up of the initialization and it seems much nicer now.
BUG=63684
TEST=manual PPAPI proxy testing
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68567 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/pepper_plugin_delegate_impl.h')
-rw-r--r-- | chrome/renderer/pepper_plugin_delegate_impl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/renderer/pepper_plugin_delegate_impl.h b/chrome/renderer/pepper_plugin_delegate_impl.h index 9402ae2..d59be3b 100644 --- a/chrome/renderer/pepper_plugin_delegate_impl.h +++ b/chrome/renderer/pepper_plugin_delegate_impl.h @@ -44,8 +44,7 @@ class PepperPluginDelegateImpl explicit PepperPluginDelegateImpl(RenderView* render_view); virtual ~PepperPluginDelegateImpl(); - scoped_refptr<pepper::PluginModule> CreateOutOfProcessPepperPlugin( - const FilePath& path); + scoped_refptr<pepper::PluginModule> CreatePepperPlugin(const FilePath& path); // Called by RenderView to tell us about painting events, these two functions // just correspond to the DidInitiatePaint and DidFlushPaint in R.V.. |