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 1ecd4bd7d3b4f0de2344ea97969ecdbcf9674201..602ddfe72e8f19c21e562df109c8da4257cb577b 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -2276,6 +2276,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, |