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 ef0e15cfe089cd45d0028deb540f829369f6a4d5..72691f8cbc0d20bfa399ba934c5551eaba36f47a 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -2579,6 +2579,12 @@ void RenderFrameHostImpl::DeleteSurroundingText(size_t before, size_t after) { |
Send(new InputMsg_DeleteSurroundingText(routing_id_, before, after)); |
} |
+void RenderFrameHostImpl::DeleteSurroundingTextInCodePoints(size_t before, |
+ size_t after) { |
+ Send(new InputMsg_DeleteSurroundingTextInCodePoints(routing_id_, before, |
+ after)); |
+} |
+ |
void RenderFrameHostImpl::JavaScriptDialogClosed( |
IPC::Message* reply_msg, |
bool success, |