| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_SetFocus, OnSetFocus); | 42 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_SetFocus, OnSetFocus); |
| 43 IPC_MESSAGE_HANDLER_GENERIC(BrowserPluginHostMsg_HandleInputEvent, | 43 IPC_MESSAGE_HANDLER_GENERIC(BrowserPluginHostMsg_HandleInputEvent, |
| 44 OnHandleInputEvent(*static_cast<const IPC::SyncMessage*>(&message), | 44 OnHandleInputEvent(*static_cast<const IPC::SyncMessage*>(&message), |
| 45 &handled)) | 45 &handled)) |
| 46 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_PluginDestroyed, | 46 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_PluginDestroyed, |
| 47 OnPluginDestroyed); | 47 OnPluginDestroyed); |
| 48 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Go, OnGo) | 48 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Go, OnGo) |
| 49 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Stop, OnStop) | 49 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Stop, OnStop) |
| 50 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Reload, OnReload) | 50 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_Reload, OnReload) |
| 51 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_TerminateGuest, OnTerminateGuest) | 51 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_TerminateGuest, OnTerminateGuest) |
| 52 IPC_MESSAGE_HANDLER(BrowserPluginHostMsg_SetVisibility, |
| 53 OnSetGuestVisibility) |
| 52 IPC_MESSAGE_UNHANDLED(handled = false) | 54 IPC_MESSAGE_UNHANDLED(handled = false) |
| 53 IPC_END_MESSAGE_MAP() | 55 IPC_END_MESSAGE_MAP() |
| 54 return handled; | 56 return handled; |
| 55 } | 57 } |
| 56 | 58 |
| 57 void BrowserPluginEmbedderHelper::OnResizeGuest( | 59 void BrowserPluginEmbedderHelper::OnResizeGuest( |
| 58 int instance_id, | 60 int instance_id, |
| 59 const BrowserPluginHostMsg_ResizeGuest_Params& params) { | 61 const BrowserPluginHostMsg_ResizeGuest_Params& params) { |
| 60 embedder_->ResizeGuest(render_view_host(), instance_id, params); | 62 embedder_->ResizeGuest(render_view_host(), instance_id, params); |
| 61 } | 63 } |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 } | 148 } |
| 147 | 149 |
| 148 void BrowserPluginEmbedderHelper::OnReload(int instance_id) { | 150 void BrowserPluginEmbedderHelper::OnReload(int instance_id) { |
| 149 embedder_->Reload(instance_id); | 151 embedder_->Reload(instance_id); |
| 150 } | 152 } |
| 151 | 153 |
| 152 void BrowserPluginEmbedderHelper::OnTerminateGuest(int instance_id) { | 154 void BrowserPluginEmbedderHelper::OnTerminateGuest(int instance_id) { |
| 153 embedder_->TerminateGuest(instance_id); | 155 embedder_->TerminateGuest(instance_id); |
| 154 } | 156 } |
| 155 | 157 |
| 158 void BrowserPluginEmbedderHelper::OnSetGuestVisibility(int instance_id, |
| 159 bool visible) { |
| 160 embedder_->SetGuestVisibility(instance_id, visible); |
| 161 } |
| 162 |
| 163 |
| 156 } // namespace content | 164 } // namespace content |
| OLD | NEW |