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

Unified Diff: content/renderer/browser_plugin/browser_plugin.cc

Issue 2887973002: Fix an IME regression for <webview> due to missing IPC message param (Closed)
Patch Set: Rebased 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
« no previous file with comments | « content/common/browser_plugin/browser_plugin_messages.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/browser_plugin/browser_plugin.cc
diff --git a/content/renderer/browser_plugin/browser_plugin.cc b/content/renderer/browser_plugin/browser_plugin.cc
index eca5cc9c1664d06e5aa81563eff924f9082d35c0..712980760b360728f432a865855a3813c0a0d9e3 100644
--- a/content/renderer/browser_plugin/browser_plugin.cc
+++ b/content/renderer/browser_plugin/browser_plugin.cc
@@ -604,7 +604,8 @@ bool BrowserPlugin::FinishComposingText(
bool keep_selection =
(selection_behavior == blink::WebInputMethodController::kKeepSelection);
BrowserPluginManager::Get()->Send(
- new BrowserPluginHostMsg_ImeFinishComposingText(keep_selection));
+ new BrowserPluginHostMsg_ImeFinishComposingText(
+ browser_plugin_instance_id_, keep_selection));
// TODO(kochi): This assumes the IPC handling always succeeds.
return true;
}
« no previous file with comments | « content/common/browser_plugin/browser_plugin_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698