| Index: content/browser/frame_host/render_widget_host_view_guest.cc
|
| diff --git a/content/browser/frame_host/render_widget_host_view_guest.cc b/content/browser/frame_host/render_widget_host_view_guest.cc
|
| index f9665c459a4161ffc71796537706218bcb1d2651..8a02c69f5ea71faf5419736fa8bc217465f1f44e 100644
|
| --- a/content/browser/frame_host/render_widget_host_view_guest.cc
|
| +++ b/content/browser/frame_host/render_widget_host_view_guest.cc
|
| @@ -287,10 +287,8 @@ void RenderWidgetHostViewGuest::SetIsLoading(bool is_loading) {
|
| platform_view_->SetIsLoading(is_loading);
|
| }
|
|
|
| -void RenderWidgetHostViewGuest::TextInputTypeChanged(
|
| - ui::TextInputType type,
|
| - ui::TextInputMode input_mode,
|
| - bool can_compose_inline) {
|
| +void RenderWidgetHostViewGuest::TextInputStateChanged(
|
| + const ViewHostMsg_TextInputState_Params& params) {
|
| if (!guest_)
|
| return;
|
|
|
| @@ -298,7 +296,7 @@ void RenderWidgetHostViewGuest::TextInputTypeChanged(
|
| if (!rwhv)
|
| return;
|
| // Forward the information to embedding RWHV.
|
| - rwhv->TextInputTypeChanged(type, input_mode, can_compose_inline);
|
| + rwhv->TextInputStateChanged(params);
|
| }
|
|
|
| void RenderWidgetHostViewGuest::ImeCancelComposition() {
|
|
|