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

Unified Diff: content/test/test_render_frame.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/test/test_render_frame.cc
diff --git a/content/test/test_render_frame.cc b/content/test/test_render_frame.cc
index 7682e3e01f780dc4c064a4d50ec74dbee22640ba..786d5f406e83a14468d574659dc87bfb7cdb453f 100644
--- a/content/test/test_render_frame.cc
+++ b/content/test/test_render_frame.cc
@@ -56,6 +56,10 @@ void TestRenderFrame::DeleteSurroundingText(int before, int after) {
OnDeleteSurroundingText(before, after);
}
+void TestRenderFrame::DeleteSurroundingTextInCodePoints(int before, int after) {
+ OnDeleteSurroundingTextInCodePoints(before, after);
+}
+
void TestRenderFrame::Unselect() {
OnUnselect();
}

Powered by Google App Engine
This is Rietveld 408576698