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

Unified Diff: chrome/browser/chromeos/input_method/input_method_manager.h

Issue 9852008: Update IME preferences outside the IME status button when Uber Tray is in use. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: retry Created 8 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
Index: chrome/browser/chromeos/input_method/input_method_manager.h
diff --git a/chrome/browser/chromeos/input_method/input_method_manager.h b/chrome/browser/chromeos/input_method/input_method_manager.h
index 4acbf645c0d42aaf721f163e932ad62c9af97866..d12d3d6d0801c2c86afabba26f458b345b37d64b 100644
--- a/chrome/browser/chromeos/input_method/input_method_manager.h
+++ b/chrome/browser/chromeos/input_method/input_method_manager.h
@@ -38,6 +38,17 @@ class XKeyboard;
// InputMethodManager::GetInstance().
class InputMethodManager {
public:
+ enum State {
+ STATE_LOGIN_SCREEN = 0,
+ // The user entered the correct password (= NOTIFICATION_LOGIN_USER_CHANGED
+ // has been sent), but NOTIFICATION_SESSION_STARTED has not.
+ STATE_LOGGING_IN,
+ // The browser window for user session is ready.
+ STATE_BROWSER_SCREEN,
+ STATE_LOCK_SCREEN,
+ STATE_TERMINATING,
+ };
+
class Observer {
public:
virtual ~Observer() {}

Powered by Google App Engine
This is Rietveld 408576698