| Index: content/renderer/render_view_browsertest.cc
|
| diff --git a/content/renderer/render_view_browsertest.cc b/content/renderer/render_view_browsertest.cc
|
| index 4e033d2d766a3407ac45fba204b70b210effbce8..f630202fbdc32ba61aba2559c3c59806d4f563cd 100644
|
| --- a/content/renderer/render_view_browsertest.cc
|
| +++ b/content/renderer/render_view_browsertest.cc
|
| @@ -27,7 +27,6 @@
|
| #include "content/common/frame_replication_state.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"
|
| @@ -1125,7 +1124,7 @@ TEST_F(RenderViewImplTest, OnImeTypeChanged) {
|
| EXPECT_EQ(ViewHostMsg_TextInputStateChanged::ID, msg->type());
|
| ViewHostMsg_TextInputStateChanged::Param params;
|
| ViewHostMsg_TextInputStateChanged::Read(msg, ¶ms);
|
| - TextInputState p = base::get<0>(params);
|
| + ViewHostMsg_TextInputState_Params p = base::get<0>(params);
|
| ui::TextInputType type = p.type;
|
| ui::TextInputMode input_mode = p.mode;
|
| bool can_compose_inline = p.can_compose_inline;
|
|
|