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

Unified Diff: content/renderer/render_widget.h

Issue 2464023002: Fix endBatchEdit
Patch Set: fix testBatchEdit_NoOp Created 4 years, 1 month 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 5bde3b184419e453b372dd7994374c0d46c9717c..80ded2d621fd99acd5604a2e38dc724e931db3ff 100644
--- a/content/renderer/render_widget.h
+++ b/content/renderer/render_widget.h
@@ -513,6 +513,15 @@ class CONTENT_EXPORT RenderWidget
void OnImeBatchEdit(bool begin);
#endif
+ // Force update of text input state.
+ void ForceUpdateTextInputState(ShowIme show_ime, ChangeSource change_source);
+
+ // An internal function to handle UpdateTextInputState and
+ // ForceUpdateTextInputState.
+ void UpdateTextInputStateInternal(ShowIme show_ime,
+ ChangeSource change_source,
+ bool force_update);
+
// Called by the browser process to update the cursor and composition
// information.
void OnRequestCompositionUpdate(bool immediate_request, bool monitor_request);

Powered by Google App Engine
This is Rietveld 408576698