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

Unified Diff: ash/system/user/login_status.cc

Issue 2041233005: Moves ash::user::LoginStatus to ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweaks Created 4 years, 6 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: ash/system/user/login_status.cc
diff --git a/ash/system/user/login_status.cc b/ash/system/user/login_status.cc
index fa5103af73341f68beea09a22c10cf74c6cfa773..69195af4767b90b3874f15c78623555389f12b28 100644
--- a/ash/system/user/login_status.cc
+++ b/ash/system/user/login_status.cc
@@ -18,10 +18,10 @@ base::string16 GetLocalizedSignOutStringForStatus(LoginStatus status,
bool multiline) {
int message_id;
switch (status) {
- case LOGGED_IN_GUEST:
+ case LoginStatus::GUEST:
message_id = IDS_ASH_STATUS_TRAY_EXIT_GUEST;
break;
- case LOGGED_IN_PUBLIC:
+ case LoginStatus::PUBLIC:
message_id = IDS_ASH_STATUS_TRAY_EXIT_PUBLIC;
break;
default:

Powered by Google App Engine
This is Rietveld 408576698