Index: content/renderer/render_view_browsertest.cc |
diff --git a/content/renderer/render_view_browsertest.cc b/content/renderer/render_view_browsertest.cc |
index 1ec29e2e4bb415146c2d72df96d25e351d18f0db..e81d2b3881db78f4489bca2a45233eda277dac80 100644 |
--- a/content/renderer/render_view_browsertest.cc |
+++ b/content/renderer/render_view_browsertest.cc |
@@ -25,6 +25,7 @@ |
#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" |
@@ -1094,7 +1095,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; |