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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest.cc

Issue 2887973002: Fix an IME regression for <webview> due to missing IPC message param (Closed)
Patch Set: Created 3 years, 7 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/browser_plugin/browser_plugin_guest.cc
diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
index 4114d6535131c6b5b97f4c115020c1b58ea88c4e..f12e85858006330fc1ae9a263f1050d421df08d7 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.cc
+++ b/content/browser/browser_plugin/browser_plugin_guest.cc
@@ -912,7 +912,8 @@ void BrowserPluginGuest::OnImeCommitText(
replacement_range, relative_cursor_pos));
}
-void BrowserPluginGuest::OnImeFinishComposingText(bool keep_selection) {
+void BrowserPluginGuest::OnImeFinishComposingText(int instance_id,
+ bool keep_selection) {
wjmaclean 2017/05/18 15:13:05 Where is the new parameter getting used?
EhsanK 2017/05/18 15:21:38 Before getting here I suppose: https://cs.chromium
wjmaclean 2017/05/18 15:37:17 I don't understand. You added a parameter to a fun
EhsanK 2017/05/18 17:44:29 As we spoke offline, I added a DCHECK as well as s
Send(new InputMsg_ImeFinishComposingText(routing_id(), keep_selection));
}
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_guest.h ('k') | content/common/browser_plugin/browser_plugin_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698