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 71e285717171346f5b8915eea590170182ddcd59..feb5b7b81cb4544a588fd45141ca1a72d773637f 100644 |
--- a/content/browser/browser_plugin/browser_plugin_guest.cc |
+++ b/content/browser/browser_plugin/browser_plugin_guest.cc |
@@ -852,14 +852,15 @@ void BrowserPluginGuest::OnImeSetComposition( |
selection_start, selection_end)); |
} |
-void BrowserPluginGuest::OnImeConfirmComposition( |
- int browser_plugin_instance_id, |
- const std::string& text, |
- bool keep_selection) { |
+void BrowserPluginGuest::OnImeConfirmComposition(int browser_plugin_instance_id, |
+ const std::string& text, |
+ bool keep_selection, |
+ int newCursorPosition) { |
Send(new InputMsg_ImeConfirmComposition(routing_id(), |
base::UTF8ToUTF16(text), |
gfx::Range::InvalidRange(), |
- keep_selection)); |
+ keep_selection, |
+ newCursorPosition)); |
} |
void BrowserPluginGuest::OnExtendSelectionAndDelete( |