diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-11 21:32:29 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-11 21:32:29 +0000 |
commit | ba4b17f666c462deab9b38fe6f9294646254a106 (patch) | |
tree | aedbbacfc742eaf8b38f7b4bdf2fabc72065df9a /chrome/renderer/webplugin_delegate_proxy.h | |
parent | 216974c9ca0ac56c6a0da2f46e683d06a653751b (diff) | |
download | chromium_src-ba4b17f666c462deab9b38fe6f9294646254a106.zip chromium_src-ba4b17f666c462deab9b38fe6f9294646254a106.tar.gz chromium_src-ba4b17f666c462deab9b38fe6f9294646254a106.tar.bz2 |
Fix some plugin-related NOTIMPLEMENTED()s in gtk Chrome.
We can sneak around not removing the NOTIMPLEMENTED()s completely by
implementing a function halfway -- if a page ends up needing a plugin
we'll get the NOTIMPLEMENTED() again.
With this change I no longer get repeated NOTIMPLEMENTED spew while
running.
Review URL: http://codereview.chromium.org/20264
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9595 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/webplugin_delegate_proxy.h')
-rw-r--r-- | chrome/renderer/webplugin_delegate_proxy.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/renderer/webplugin_delegate_proxy.h b/chrome/renderer/webplugin_delegate_proxy.h index fe5e392..3b7c978 100644 --- a/chrome/renderer/webplugin_delegate_proxy.h +++ b/chrome/renderer/webplugin_delegate_proxy.h @@ -8,6 +8,7 @@ #include <string> #include "base/gfx/rect.h" +#include "base/gfx/native_widget_types.h" #include "base/ref_counted.h" #include "chrome/common/ipc_message.h" #include "chrome/renderer/plugin_channel_host.h" @@ -106,7 +107,8 @@ class WebPluginDelegateProxy : public WebPluginDelegate, // Message handlers for messages that proxy WebPlugin methods, which // we translate into calls to the real WebPlugin. - void OnSetWindow(HWND window, HANDLE modal_loop_pump_messages_event); + void OnSetWindow(gfx::NativeView window, + HANDLE modal_loop_pump_messages_event); void OnCompleteURL(const std::string& url_in, std::string* url_out, bool* result); void OnHandleURLRequest(const PluginHostMsg_URLRequest_Params& params); |