Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(759)

Unified Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 2617443002: Implement ThreadedInputConnection.deleteSurroundingTextInCodePoints() (Closed)
Patch Set: Add more comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 ef14c8360cf0d7bea2c163f1ed6a9a5496d96fa9..701c52f30999e1d928c499edfa6de6ef8f68d3ac 100644
--- a/content/browser/frame_host/render_frame_host_impl.cc
+++ b/content/browser/frame_host/render_frame_host_impl.cc
@@ -2520,6 +2520,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,

Powered by Google App Engine
This is Rietveld 408576698