diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-28 19:36:41 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-28 19:36:41 +0000 |
commit | 46f36a49b661fe4af87e95befb659464e3b1fbbc (patch) | |
tree | 86a774a4175c32c882460e61ec9081800fa0ca56 /chrome/renderer/webplugin_delegate_proxy.h | |
parent | bf19ce759d2e46e7f1f8839c9f2791f5f7661929 (diff) | |
download | chromium_src-46f36a49b661fe4af87e95befb659464e3b1fbbc.zip chromium_src-46f36a49b661fe4af87e95befb659464e3b1fbbc.tar.gz chromium_src-46f36a49b661fe4af87e95befb659464e3b1fbbc.tar.bz2 |
Header cleanup in chrome/renderer/.
In renderer_webkit_client_impl, several impl classes got moved to the
implementation file.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3032027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53996 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/webplugin_delegate_proxy.h')
-rw-r--r-- | chrome/renderer/webplugin_delegate_proxy.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/chrome/renderer/webplugin_delegate_proxy.h b/chrome/renderer/webplugin_delegate_proxy.h index 2e2050d..1660556 100644 --- a/chrome/renderer/webplugin_delegate_proxy.h +++ b/chrome/renderer/webplugin_delegate_proxy.h @@ -10,17 +10,14 @@ #include <vector> #include "app/surface/transport_dib.h" -#include "base/file_path.h" #include "base/ref_counted.h" +#include "base/scoped_ptr.h" #include "base/weak_ptr.h" -#include "chrome/renderer/plugin_channel_host.h" #include "gfx/native_widget_types.h" #include "gfx/rect.h" #include "googleurl/src/gurl.h" -#include "gpu/command_buffer/common/command_buffer.h" +#include "ipc/ipc_channel.h" #include "ipc/ipc_message.h" -#include "skia/ext/platform_canvas.h" -#include "webkit/glue/plugins/webplugin.h" #include "webkit/glue/plugins/webplugininfo.h" #include "webkit/glue/plugins/webplugin_delegate.h" @@ -33,6 +30,7 @@ class CommandBufferProxy; struct NPObject; class NPObjectStub; struct NPVariant_Param; +class PluginChannelHost; struct PluginHostMsg_URLRequest_Params; class RenderView; class SkBitmap; @@ -42,6 +40,14 @@ class SharedMemory; class WaitableEvent; } +namespace skia { +class PlatformCanvas; +} + +namespace webkit_glue { +class WebPlugin; +} + // An implementation of WebPluginDelegate that proxies all calls to // the plugin process. class WebPluginDelegateProxy |