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 8d29386d448718d125b6b215d3cd58f965ffa081..f2825f9303e685b38f0400423211060169082297 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -2297,6 +2297,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, |