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

Unified Diff: content/renderer/render_widget.cc

Issue 1652483002: Browser Side Text Input State Tracking for OOPIF. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merged Created 4 years, 8 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 0f53306133004e870e0fbca12970d1156fdd0860..45fb990e92f8cf0381189f66835f3ce69eca969f 100644
--- a/content/renderer/render_widget.cc
+++ b/content/renderer/render_widget.cc
@@ -37,6 +37,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"
@@ -1044,7 +1045,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