| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/browser_plugin/browser_plugin_embedder_helper.h" | 5 #include "content/browser/browser_plugin/browser_plugin_embedder_helper.h" |
| 6 | 6 |
| 7 #include "content/browser/browser_plugin/browser_plugin_embedder.h" | 7 #include "content/browser/browser_plugin/browser_plugin_embedder.h" |
| 8 #include "content/browser/renderer_host/render_view_host_impl.h" | 8 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 9 #include "content/common/browser_plugin_messages.h" | 9 #include "content/common/browser_plugin_messages.h" |
| 10 #include "content/common/view_messages.h" | 10 #include "content/common/view_messages.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_NavigateGuest, | 36 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_NavigateGuest, |
| 37 OnNavigateGuest); | 37 OnNavigateGuest); |
| 38 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_ResizeGuest, OnResizeGuest) | 38 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_ResizeGuest, OnResizeGuest) |
| 39 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_UpdateRect_ACK, OnUpdateRectACK); | 39 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_UpdateRect_ACK, OnUpdateRectACK); |
| 40 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_SetFocus, OnSetFocus); | 40 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_SetFocus, OnSetFocus); |
| 41 IPC_MESSAGE_HANDLER_GENERIC(BrowserPluginHostMsg_HandleInputEvent, | 41 IPC_MESSAGE_HANDLER_GENERIC(BrowserPluginHostMsg_HandleInputEvent, |
| 42 OnHandleInputEvent(*static_cast<const IPC::SyncMessage*>(&message), | 42 OnHandleInputEvent(*static_cast<const IPC::SyncMessage*>(&message), |
| 43 &handled)) | 43 &handled)) |
| 44 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_PluginDestroyed, | 44 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_PluginDestroyed, |
| 45 OnPluginDestroyed); | 45 OnPluginDestroyed); |
| 46 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Stop, OnStop) |
| 47 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Reload, OnReload) |
| 46 IPC_MESSAGE_UNHANDLED(handled = false) | 48 IPC_MESSAGE_UNHANDLED(handled = false) |
| 47 IPC_END_MESSAGE_MAP() | 49 IPC_END_MESSAGE_MAP() |
| 48 return handled; | 50 return handled; |
| 49 } | 51 } |
| 50 | 52 |
| 51 void BrowserPluginEmbedderHelper::OnResizeGuest( | 53 void BrowserPluginEmbedderHelper::OnResizeGuest( |
| 52 int instance_id, | 54 int instance_id, |
| 53 const BrowserPluginHostMsg_ResizeGuest_Params& params) { | 55 const BrowserPluginHostMsg_ResizeGuest_Params& params) { |
| 54 TransportDIB* damage_buffer = NULL; | 56 TransportDIB* damage_buffer = NULL; |
| 55 #if defined(OS_WIN) | 57 #if defined(OS_WIN) |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 } | 143 } |
| 142 | 144 |
| 143 void BrowserPluginEmbedderHelper::OnSetFocus(int instance_id, bool focused) { | 145 void BrowserPluginEmbedderHelper::OnSetFocus(int instance_id, bool focused) { |
| 144 embedder_->SetFocus(instance_id, focused); | 146 embedder_->SetFocus(instance_id, focused); |
| 145 } | 147 } |
| 146 | 148 |
| 147 void BrowserPluginEmbedderHelper::OnPluginDestroyed(int instance_id) { | 149 void BrowserPluginEmbedderHelper::OnPluginDestroyed(int instance_id) { |
| 148 embedder_->PluginDestroyed(instance_id); | 150 embedder_->PluginDestroyed(instance_id); |
| 149 } | 151 } |
| 150 | 152 |
| 153 void BrowserPluginEmbedderHelper::OnStop(int instance_id) { |
| 154 embedder_->Stop(instance_id); |
| 155 } |
| 156 |
| 157 void BrowserPluginEmbedderHelper::OnReload(int instance_id) { |
| 158 embedder_->Reload(instance_id); |
| 159 } |
| 160 |
| 151 } // namespace content | 161 } // namespace content |
| OLD | NEW |