Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Unified Diff: content/renderer/render_widget.cc

Issue 1663013005: [DO NOT REVIEW] Always calling Notify for android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Trying to Fix MAC Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/test/data/textinput/page_with_input.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_widget.cc
diff --git a/content/renderer/render_widget.cc b/content/renderer/render_widget.cc
index c1732643163ab93a22e1567e3c21c89801e46520..8a45e9995efde6c15c0db79d60c12f6a59229385 100644
--- a/content/renderer/render_widget.cc
+++ b/content/renderer/render_widget.cc
@@ -38,6 +38,7 @@
#include "content/common/input/web_input_event_traits.h"
#include "content/common/input_messages.h"
#include "content/common/swapped_out_messages.h"
+#include "content/common/text_input_state.h"
#include "content/common/view_messages.h"
#include "content/public/common/content_features.h"
#include "content/public/common/content_switches.h"
@@ -1045,7 +1046,7 @@ void RenderWidget::UpdateTextInputState(ShowIme show_ime,
|| text_field_is_dirty_
#endif
) {
- ViewHostMsg_TextInputState_Params params;
+ TextInputState params;
params.type = new_type;
params.mode = new_mode;
params.flags = new_info.flags;
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/test/data/textinput/page_with_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698