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

Unified Diff: content/test/test_render_frame.cc

Issue 2323983003: DO NOT SUBMIT: Bundle IME-related messages into one for batch edit (Closed)
Patch Set: fixed nits and fixed blimp test Created 4 years, 3 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
« no previous file with comments | « content/test/test_render_frame.h ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_render_frame.cc
diff --git a/content/test/test_render_frame.cc b/content/test/test_render_frame.cc
index 37acdf78039b967db91b86f828119c685ef9c995..c1267b6c5630bd752a0b01f43ce8639da3745ba4 100644
--- a/content/test/test_render_frame.cc
+++ b/content/test/test_render_frame.cc
@@ -43,14 +43,6 @@ void TestRenderFrame::SwapOut(
OnSwapOut(proxy_routing_id, is_loading, replicated_frame_state);
}
-void TestRenderFrame::SetEditableSelectionOffsets(int start, int end) {
- OnSetEditableSelectionOffsets(start, end);
-}
-
-void TestRenderFrame::ExtendSelectionAndDelete(int before, int after) {
- OnExtendSelectionAndDelete(before, after);
-}
-
void TestRenderFrame::Unselect() {
OnUnselect();
}
@@ -59,11 +51,4 @@ void TestRenderFrame::SetAccessibilityMode(AccessibilityMode new_mode) {
OnSetAccessibilityMode(new_mode);
}
-void TestRenderFrame::SetCompositionFromExistingText(
- int start,
- int end,
- const std::vector<blink::WebCompositionUnderline>& underlines) {
- OnSetCompositionFromExistingText(start, end, underlines);
-}
-
} // namespace content
« no previous file with comments | « content/test/test_render_frame.h ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698