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

Unified Diff: content/renderer/render_widget.h

Issue 12093068: Adding missing UpdateTextInputState calls after each ime event. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding the missing selection values to EditorInfo Created 7 years, 11 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
Index: content/renderer/render_widget.h
diff --git a/content/renderer/render_widget.h b/content/renderer/render_widget.h
index 8f3df8f863c17586378517d1d1d5be2b94b8b85b..964138913cb15d2a04796f14a4d4a414bf194567 100644
--- a/content/renderer/render_widget.h
+++ b/content/renderer/render_widget.h
@@ -538,6 +538,9 @@ class CONTENT_EXPORT RenderWidget
// Are we currently handling an input event?
bool handling_input_event_;
+ // Are we currently handling an ime event?
Seigo Nonaka 2013/01/31 06:19:14 We must call UpdateTextInputState every time after
aurimas (slooooooooow) 2013/01/31 06:31:13 This bool is just used to make sure that we don't
+ bool handling_ime_event_;
+
// True if we have requested this widget be closed. No more messages will
// be sent, except for a Close.
bool closing_;

Powered by Google App Engine
This is Rietveld 408576698