| Index: content/browser/renderer_host/render_widget_host_view_mac.mm
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_mac.mm b/content/browser/renderer_host/render_widget_host_view_mac.mm
|
| index 1c9ce1e430de8821450808b9dd533f7c5999f680..63efa447ef2829c86c829b263b5dde893cdf72d3 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_mac.mm
|
| +++ b/content/browser/renderer_host/render_widget_host_view_mac.mm
|
| @@ -57,6 +57,7 @@
|
| #include "content/common/input/input_event_utils.h"
|
| #include "content/common/input_messages.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/browser_context.h"
|
| #include "content/public/browser/browser_plugin_guest_manager.h"
|
| @@ -1054,7 +1055,7 @@ void RenderWidgetHostViewMac::SetIsLoading(bool is_loading) {
|
| }
|
|
|
| void RenderWidgetHostViewMac::TextInputStateChanged(
|
| -const ViewHostMsg_TextInputState_Params& params) {
|
| + const TextInputState& params) {
|
| if (text_input_type_ != params.type
|
| || can_compose_inline_ != params.can_compose_inline) {
|
| text_input_type_ = params.type;
|
|
|