| Index: content/browser/browser_plugin/browser_plugin_guest.cc
 | 
| diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
 | 
| index 1f985ec5c83d928e1cb8d222785c2a12664a67e8..d2ba7285f9fef018ca93c271d64997aa84c1f3cb 100644
 | 
| --- a/content/browser/browser_plugin/browser_plugin_guest.cc
 | 
| +++ b/content/browser/browser_plugin/browser_plugin_guest.cc
 | 
| @@ -898,8 +898,8 @@ void BrowserPluginGuest::OnExecuteEditCommand(int browser_plugin_instance_id,
 | 
|    if (!focused_frame)
 | 
|      return;
 | 
|  
 | 
| -  focused_frame->Send(new InputMsg_ExecuteNoValueEditCommand(
 | 
| -      focused_frame->GetRoutingID(), name));
 | 
| +  focused_frame->GetFrameInputHandler()->ExecuteEditCommand(name,
 | 
| +                                                            base::nullopt);
 | 
|  }
 | 
|  
 | 
|  void BrowserPluginGuest::OnImeSetComposition(
 | 
| @@ -934,7 +934,7 @@ void BrowserPluginGuest::OnExtendSelectionAndDelete(
 | 
|    RenderFrameHostImpl* rfh = static_cast<RenderFrameHostImpl*>(
 | 
|        web_contents()->GetFocusedFrame());
 | 
|    if (rfh)
 | 
| -    rfh->ExtendSelectionAndDelete(before, after);
 | 
| +    rfh->GetFrameInputHandler()->ExtendSelectionAndDelete(before, after);
 | 
|  }
 | 
|  
 | 
|  void BrowserPluginGuest::OnLockMouse(bool user_gesture,
 | 
| 
 |