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

Unified Diff: ash/system/chromeos/network/tray_sms.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/chromeos/network/tray_sms.h ('k') | ash/system/chromeos/network/tray_vpn.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/chromeos/network/tray_sms.cc
diff --git a/ash/system/chromeos/network/tray_sms.cc b/ash/system/chromeos/network/tray_sms.cc
index 802de063b7a1b5bf1e997c3cadd89e04f51cb2a3..c6f6fc766cc2975625df036a82b6bb433ca38d00 100644
--- a/ash/system/chromeos/network/tray_sms.cc
+++ b/ash/system/chromeos/network/tray_sms.cc
@@ -299,14 +299,14 @@ TraySms::~TraySms() {
}
}
-views::View* TraySms::CreateDefaultView(user::LoginStatus status) {
+views::View* TraySms::CreateDefaultView(LoginStatus status) {
CHECK(default_ == NULL);
default_ = new SmsDefaultView(this);
default_->SetVisible(!messages_.empty());
return default_;
}
-views::View* TraySms::CreateDetailedView(user::LoginStatus status) {
+views::View* TraySms::CreateDetailedView(LoginStatus status) {
CHECK(detailed_ == NULL);
HideNotificationView();
if (messages_.empty())
@@ -315,7 +315,7 @@ views::View* TraySms::CreateDetailedView(user::LoginStatus status) {
return detailed_;
}
-views::View* TraySms::CreateNotificationView(user::LoginStatus status) {
+views::View* TraySms::CreateNotificationView(LoginStatus status) {
CHECK(notification_ == NULL);
if (detailed_)
return NULL;
« no previous file with comments | « ash/system/chromeos/network/tray_sms.h ('k') | ash/system/chromeos/network/tray_vpn.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698