diff options
Diffstat (limited to 'chrome/plugin/webplugin_proxy.cc')
-rw-r--r-- | chrome/plugin/webplugin_proxy.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/plugin/webplugin_proxy.cc b/chrome/plugin/webplugin_proxy.cc index 352e287..dbe9b5a 100644 --- a/chrome/plugin/webplugin_proxy.cc +++ b/chrome/plugin/webplugin_proxy.cc @@ -70,7 +70,7 @@ bool WebPluginProxy::Send(IPC::Message* msg) { return channel_->Send(msg); } -void WebPluginProxy::SetWindow(HWND window, HANDLE pump_messages_event) { +bool WebPluginProxy::SetWindow(HWND window, HANDLE pump_messages_event) { HANDLE pump_messages_event_for_renderer = NULL; if (pump_messages_event) { @@ -104,6 +104,8 @@ void WebPluginProxy::SetWindow(HWND window, HANDLE pump_messages_event) { Send(new PluginHostMsg_SetWindow(route_id_, window, pump_messages_event_for_renderer)); + + return false; } void WebPluginProxy::CancelResource(int id) { |