| Index: content/renderer/render_view_browsertest.cc
|
| diff --git a/content/renderer/render_view_browsertest.cc b/content/renderer/render_view_browsertest.cc
|
| index 7b0e511305d15b2ad0f29b08aa84ef9ed4ccc17c..7c0ab1cc2dfcd74da09c03c199f3c6a7d89f6100 100644
|
| --- a/content/renderer/render_view_browsertest.cc
|
| +++ b/content/renderer/render_view_browsertest.cc
|
| @@ -22,6 +22,7 @@
|
| #include "content/common/frame_messages.h"
|
| #include "content/common/site_isolation_policy.h"
|
| #include "content/common/ssl_status_serialization.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/native_web_keyboard_event.h"
|
| @@ -1166,7 +1167,7 @@ TEST_F(RenderViewImplTest, OnImeTypeChanged) {
|
| EXPECT_EQ(ViewHostMsg_TextInputStateChanged::ID, msg->type());
|
| ViewHostMsg_TextInputStateChanged::Param params;
|
| ViewHostMsg_TextInputStateChanged::Read(msg, ¶ms);
|
| - ViewHostMsg_TextInputState_Params p = base::get<0>(params);
|
| + TextInputState p = base::get<0>(params);
|
| ui::TextInputType type = p.type;
|
| ui::TextInputMode input_mode = p.mode;
|
| bool can_compose_inline = p.can_compose_inline;
|
|
|