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

Unified Diff: ash/system/tray_update.cc

Issue 2041233005: Moves ash::user::LoginStatus to ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test 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
« no previous file with comments | « ash/system/tray_update.h ('k') | ash/system/user/login_status.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray_update.cc
diff --git a/ash/system/tray_update.cc b/ash/system/tray_update.cc
index 2caeeb1c7edf4db5d662d5c3d9457b0d00e26614..aebde2dc69bb4fcd2d4ed720112b927f95f891ae 100644
--- a/ash/system/tray_update.cc
+++ b/ash/system/tray_update.cc
@@ -173,13 +173,13 @@ bool TrayUpdate::GetInitialVisibility() {
return info.update_required;
}
-views::View* TrayUpdate::CreateDefaultView(user::LoginStatus status) {
+views::View* TrayUpdate::CreateDefaultView(LoginStatus status) {
UpdateInfo info;
Shell::GetInstance()->system_tray_delegate()->GetSystemUpdateInfo(&info);
return info.update_required ? new UpdateView(info) : nullptr;
}
-views::View* TrayUpdate::CreateDetailedView(user::LoginStatus status) {
+views::View* TrayUpdate::CreateDetailedView(LoginStatus status) {
return CreateDefaultView(status);
}
« no previous file with comments | « ash/system/tray_update.h ('k') | ash/system/user/login_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698