| 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 b46cdf8493bf83897ded67b86c41bcc247355aba..b97a954748def4a0ca14eb1b78f253c55808164e 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_guest.cc
|
| +++ b/content/browser/browser_plugin/browser_plugin_guest.cc
|
| @@ -991,10 +991,9 @@ void BrowserPluginGuest::OnTakeFocus(bool reverse) {
|
| new BrowserPluginMsg_AdvanceFocus(browser_plugin_instance_id(), reverse));
|
| }
|
|
|
| -void BrowserPluginGuest::OnTextInputStateChanged(
|
| - const ViewHostMsg_TextInputState_Params& params) {
|
| +void BrowserPluginGuest::OnTextInputStateChanged(const TextInputState& params) {
|
| // Save the state of text input so we can restore it on focus.
|
| - last_text_input_state_.reset(new ViewHostMsg_TextInputState_Params(params));
|
| + last_text_input_state_.reset(new TextInputState(params));
|
|
|
| SendTextInputTypeChangedToView(
|
| static_cast<RenderWidgetHostViewBase*>(
|
|
|