Chromium Code Reviews

Unified Diff: content/test/test_render_frame.cc

Issue 1889053003: Fix InputConnection.deleteSurroundingText() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Deal with multi-code-text, and add more tests. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: content/test/test_render_frame.cc
diff --git a/content/test/test_render_frame.cc b/content/test/test_render_frame.cc
index f63a0c84a5abe187a73448da36f51f696c67a7e2..024b88641bb9d0731b5b7b028816cfc4fb6c77f8 100644
--- a/content/test/test_render_frame.cc
+++ b/content/test/test_render_frame.cc
@@ -50,6 +50,10 @@ void TestRenderFrame::ExtendSelectionAndDelete(int before, int after) {
OnExtendSelectionAndDelete(before, after);
}
+void TestRenderFrame::DeleteSurroundingText(int before, int after) {
+ OnDeleteSurroundingText(before, after);
+}
+
void TestRenderFrame::Unselect() {
OnUnselect();
}

Powered by Google App Engine