| Index: content/plugin/webplugin_delegate_stub.cc
|
| diff --git a/content/plugin/webplugin_delegate_stub.cc b/content/plugin/webplugin_delegate_stub.cc
|
| index 6d67b68667cfb025cc55ef13e660f6d3e04b8d5d..e6927bbd343aa04e74f144ef3e890b29a02b4a09 100644
|
| --- a/content/plugin/webplugin_delegate_stub.cc
|
| +++ b/content/plugin/webplugin_delegate_stub.cc
|
| @@ -83,7 +83,6 @@ bool WebPluginDelegateStub::OnMessageReceived(const IPC::Message& msg) {
|
| IPC_MESSAGE_HANDLER(PluginMsg_HandleInputEvent, OnHandleInputEvent)
|
| IPC_MESSAGE_HANDLER(PluginMsg_Paint, OnPaint)
|
| IPC_MESSAGE_HANDLER(PluginMsg_DidPaint, OnDidPaint)
|
| - IPC_MESSAGE_HANDLER(PluginMsg_GetFormValue, OnGetFormValue)
|
| IPC_MESSAGE_HANDLER(PluginMsg_UpdateGeometry, OnUpdateGeometry)
|
| IPC_MESSAGE_HANDLER(PluginMsg_UpdateGeometrySync, OnUpdateGeometry)
|
| IPC_MESSAGE_HANDLER(PluginMsg_SetContentAreaFocus, OnSetContentAreaFocus)
|
| @@ -179,14 +178,6 @@ void WebPluginDelegateStub::OnUpdateGeometry(
|
| param.windowless_buffer_index);
|
| }
|
|
|
| -void WebPluginDelegateStub::OnGetFormValue(base::string16* value,
|
| - bool* success) {
|
| - *success = false;
|
| - if (!delegate_)
|
| - return;
|
| - *success = delegate_->GetFormValue(value);
|
| -}
|
| -
|
| void WebPluginDelegateStub::OnSetContentAreaFocus(bool has_focus) {
|
| if (delegate_)
|
| delegate_->SetContentAreaHasFocus(has_focus);
|
|
|