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 f19e585957e80bc0a34959012a09201c46a483fd..b2a596a1fd494ab3bd9a0ebddeb19b1283649565 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -2475,6 +2475,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, |