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

Unified Diff: ui/base/ime/input_method_base.h

Issue 80583002: [FYI] All-in-one OnCandidateWindow{Show,Update,Hide} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: ui/base/ime/input_method_base.h
diff --git a/ui/base/ime/input_method_base.h b/ui/base/ime/input_method_base.h
index 105b08daf656f4256dcc2153714585335cbd8401..99c3f3c32d382b60389368f6a9fa4f04e48953a4 100644
--- a/ui/base/ime/input_method_base.h
+++ b/ui/base/ime/input_method_base.h
@@ -90,6 +90,8 @@ class UI_EXPORT InputMethodBase : NON_EXPORTED_BASE(public InputMethod) {
return system_toplevel_window_focused_;
}
+ void NotifyCandidateWindowStateChanged();
+
private:
void SetFocusedTextInputClientInternal(TextInputClient* client);
@@ -100,6 +102,8 @@ class UI_EXPORT InputMethodBase : NON_EXPORTED_BASE(public InputMethod) {
bool system_toplevel_window_focused_;
+ bool is_candidate_popup_open_;
+
DISALLOW_COPY_AND_ASSIGN(InputMethodBase);
};

Powered by Google App Engine
This is Rietveld 408576698