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

Unified Diff: ash/system/tray/system_tray_item.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/system_tray_item.h ('k') | ash/system/tray/system_tray_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/system_tray_item.cc
diff --git a/ash/system/tray/system_tray_item.cc b/ash/system/tray/system_tray_item.cc
index 6eb03a1fabd46559b555a4ad8092a807579f0793..008b2ca169dd49b6a959b193986896772757b01c 100644
--- a/ash/system/tray/system_tray_item.cc
+++ b/ash/system/tray/system_tray_item.cc
@@ -19,19 +19,19 @@ SystemTrayItem::SystemTrayItem(SystemTray* system_tray)
SystemTrayItem::~SystemTrayItem() {
}
-views::View* SystemTrayItem::CreateTrayView(user::LoginStatus status) {
+views::View* SystemTrayItem::CreateTrayView(LoginStatus status) {
return NULL;
}
-views::View* SystemTrayItem::CreateDefaultView(user::LoginStatus status) {
+views::View* SystemTrayItem::CreateDefaultView(LoginStatus status) {
return NULL;
}
-views::View* SystemTrayItem::CreateDetailedView(user::LoginStatus status) {
+views::View* SystemTrayItem::CreateDetailedView(LoginStatus status) {
return NULL;
}
-views::View* SystemTrayItem::CreateNotificationView(user::LoginStatus status) {
+views::View* SystemTrayItem::CreateNotificationView(LoginStatus status) {
return NULL;
}
@@ -51,8 +51,7 @@ void SystemTrayItem::TransitionDetailedView() {
system_tray()->ShowDetailedView(this, 0, true, BUBBLE_USE_EXISTING);
}
-void SystemTrayItem::UpdateAfterLoginStatusChange(user::LoginStatus status) {
-}
+void SystemTrayItem::UpdateAfterLoginStatusChange(LoginStatus status) {}
void SystemTrayItem::UpdateAfterShelfAlignmentChange(ShelfAlignment alignment) {
}
« no previous file with comments | « ash/system/tray/system_tray_item.h ('k') | ash/system/tray/system_tray_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698