| 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 1cc0c86a1e2884e3eb1599028822c30e680aeb49..b5bc0a56b96084cfdf0580d79e6e8a2d1801c143 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -2159,6 +2159,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,
|
|
|