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

Unified Diff: chrome/browser/chromeos/login/user_manager.cc

Issue 8976012: chromeos: Implement power button animations for Aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use aura::RootWindow::ShowCursor() to hide cursor Created 9 years 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/login/user_manager.cc
diff --git a/chrome/browser/chromeos/login/user_manager.cc b/chrome/browser/chromeos/login/user_manager.cc
index 623d71cd4288020edc99457c5f475c6af0d5c4a7..07106cc843f907d742324dc635db75c5be5c76d1 100644
--- a/chrome/browser/chromeos/login/user_manager.cc
+++ b/chrome/browser/chromeos/login/user_manager.cc
@@ -68,10 +68,6 @@ const char kUserDisplayEmail[] = "UserDisplayEmail";
// A dictionary that maps usernames to OAuth token presence flag.
const char kUserOAuthTokenStatus[] = "OAuthTokenStatus";
-// Incognito user is represented by an empty string (since some code already
-// depends on that and it's hard to figure out what).
-const char kGuestUser[] = "";
-
// Stub user email (for test paths).
const char kStubUser[] = "stub-user@example.com";
@@ -250,6 +246,10 @@ void RealTPMTokenInfoDelegate::GetTokenInfo(std::string* token_name,
} // namespace
+// Incognito user is represented by an empty string (since some code already
+// depends on that and it's hard to figure out what).
+const char UserManager::kGuestUser[] = "";
+
// static
UserManager* UserManager::Get() {
// Not thread-safe.

Powered by Google App Engine
This is Rietveld 408576698