| Index: content/browser/renderer_host/render_widget_host_impl.cc | 
| diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc | 
| index d3b84c942bf6c9a39c5311a5384687c4357fef5d..093f46fdbace89b4b8bd25c956064e53883ea30e 100644 | 
| --- a/content/browser/renderer_host/render_widget_host_impl.cc | 
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc | 
| @@ -2436,6 +2436,12 @@ void RenderWidgetHostImpl::SelectAll() { | 
| Send(new InputMsg_SelectAll(GetRoutingID())); | 
| RecordAction(UserMetricsAction("SelectAll")); | 
| } | 
| + | 
| +void RenderWidgetHostImpl::Unselect() { | 
| +  Send(new InputMsg_Unselect(GetRoutingID())); | 
| +  RecordAction(UserMetricsAction("Unselect")); | 
| +} | 
| + | 
| bool RenderWidgetHostImpl::GotResponseToLockMouseRequest(bool allowed) { | 
| if (!allowed) { | 
| RejectMouseLockOrUnlockIfNecessary(); | 
|  |