diff options
author | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-15 00:10:09 +0000 |
---|---|---|
committer | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-15 00:10:09 +0000 |
commit | 8e14284ed88d453f7ae280f033fffe7bcd6d8450 (patch) | |
tree | 3d1c5ef57ba393c3782f3095061a948b70f93f3e /chrome/plugin/webplugin_proxy.h | |
parent | 573ef318ab6f9116139419745d741765ff4bb910 (diff) | |
download | chromium_src-8e14284ed88d453f7ae280f033fffe7bcd6d8450.zip chromium_src-8e14284ed88d453f7ae280f033fffe7bcd6d8450.tar.gz chromium_src-8e14284ed88d453f7ae280f033fffe7bcd6d8450.tar.bz2 |
Set disabled style on GPU window and plugin intermediate window so mouse messages pass through to the browser window.
TEST=trybots
BUG=none
Review URL: http://codereview.chromium.org/549025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36311 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin/webplugin_proxy.h')
-rw-r--r-- | chrome/plugin/webplugin_proxy.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/plugin/webplugin_proxy.h b/chrome/plugin/webplugin_proxy.h index 2e86bbd..4a91685 100644 --- a/chrome/plugin/webplugin_proxy.h +++ b/chrome/plugin/webplugin_proxy.h @@ -42,6 +42,12 @@ class WebPluginProxy : public webkit_glue::WebPlugin { // WebPlugin overrides void SetWindow(gfx::PluginWindowHandle window); + + // Whether input events should be sent to the delegate. + virtual void SetAcceptsInputEvents(bool accepts) { + NOTREACHED(); + } + void WillDestroyWindow(gfx::PluginWindowHandle window); #if defined(OS_WIN) void SetWindowlessPumpEvent(HANDLE pump_messages_event); |