| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index 4e4c97ae48d538e7b08119d120de39de21e31b3a..b73233584db8142f39df0ca524e0d3b8e2846215 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -2160,6 +2160,10 @@ void RenderFrameHostImpl::ExtendSelectionAndDelete(size_t before,
|
| Send(new InputMsg_ExtendSelectionAndDelete(routing_id_, before, after));
|
| }
|
|
|
| +void RenderFrameHostImpl::DeleteSurroundingText(int before, int after) {
|
| + Send(new InputMsg_DeleteSurroundingText(routing_id_, before, after));
|
| +}
|
| +
|
| void RenderFrameHostImpl::JavaScriptDialogClosed(
|
| IPC::Message* reply_msg,
|
| bool success,
|
|
|