| Index: content/browser/renderer_host/render_widget_host_view_aura.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| index 65cb48d9141a8a27c684925284628b88873de120..d28706d37b32cc70f21229f5e34a2310aac3ea43 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| @@ -47,6 +47,7 @@
|
| #include "content/browser/renderer_host/web_input_event_aura.h"
|
| #include "content/common/content_switches_internal.h"
|
| #include "content/common/site_isolation_policy.h"
|
| +#include "content/common/text_input_state.h"
|
| #include "content/common/view_messages.h"
|
| #include "content/public/browser/content_browser_client.h"
|
| #include "content/public/browser/overscroll_configuration.h"
|
| @@ -876,7 +877,7 @@ void RenderWidgetHostViewAura::SetIsLoading(bool is_loading) {
|
| }
|
|
|
| void RenderWidgetHostViewAura::TextInputStateChanged(
|
| - const ViewHostMsg_TextInputState_Params& params) {
|
| + const TextInputState& params) {
|
| if (text_input_type_ != params.type ||
|
| text_input_mode_ != params.mode ||
|
| can_compose_inline_ != params.can_compose_inline ||
|
|
|