OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/system/chromeos/supervised/tray_supervised_user.h" | 5 #include "ash/system/chromeos/supervised/tray_supervised_user.h" |
6 | 6 |
7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
8 #include "ash/system/chromeos/label_tray_view.h" | 8 #include "ash/system/chromeos/label_tray_view.h" |
9 #include "ash/system/system_notifier.h" | 9 #include "ash/system/system_notifier.h" |
10 #include "ash/system/tray/system_tray_delegate.h" | 10 #include "ash/system/tray/system_tray_delegate.h" |
11 #include "ash/system/tray/system_tray_notifier.h" | 11 #include "ash/system/tray/system_tray_notifier.h" |
12 #include "ash/system/tray/tray_notification_view.h" | 12 #include "ash/system/tray/tray_notification_view.h" |
13 #include "ash/system/user/login_status.h" | 13 #include "ash/system/user/login_status.h" |
| 14 #include "base/bind.h" |
14 #include "base/callback.h" | 15 #include "base/callback.h" |
15 #include "base/logging.h" | 16 #include "base/logging.h" |
16 #include "grit/ash_resources.h" | 17 #include "grit/ash_resources.h" |
17 #include "ui/base/resource/resource_bundle.h" | 18 #include "ui/base/resource/resource_bundle.h" |
18 #include "ui/message_center/message_center.h" | 19 #include "ui/message_center/message_center.h" |
19 #include "ui/message_center/notification.h" | 20 #include "ui/message_center/notification.h" |
20 #include "ui/message_center/notification_delegate.h" | 21 #include "ui/message_center/notification_delegate.h" |
21 | 22 |
22 using message_center::Notification; | 23 using message_center::Notification; |
23 | 24 |
24 namespace ash { | 25 namespace ash { |
25 | 26 |
26 const char TraySupervisedUser::kNotificationId[] = | 27 const char TraySupervisedUser::kNotificationId[] = |
27 "chrome://user/locally-managed"; | 28 "chrome://user/locally-managed"; |
28 | 29 |
29 TraySupervisedUser::TraySupervisedUser(SystemTray* system_tray) | 30 TraySupervisedUser::TraySupervisedUser(SystemTray* system_tray) |
30 : SystemTrayItem(system_tray), | 31 : SystemTrayItem(system_tray), |
31 tray_view_(NULL), | 32 tray_view_(NULL), |
32 status_(ash::user::LOGGED_IN_NONE), | 33 status_(ash::user::LOGGED_IN_NONE), |
33 is_user_supervised_(false) { | 34 is_user_supervised_(false), |
| 35 weak_factory_observers_(this) { |
| 36 Shell::GetInstance()->system_tray_delegate()->AddCustodianInfoChangedObserver( |
| 37 weak_factory_observers_.GetWeakPtr()); |
34 } | 38 } |
35 | 39 |
36 TraySupervisedUser::~TraySupervisedUser() { | 40 TraySupervisedUser::~TraySupervisedUser() { |
37 } | 41 } |
38 | 42 |
39 void TraySupervisedUser::UpdateMessage() { | 43 void TraySupervisedUser::UpdateMessage() { |
40 base::string16 message = Shell::GetInstance()->system_tray_delegate()-> | 44 base::string16 message = Shell::GetInstance()->system_tray_delegate()-> |
41 GetSupervisedUserMessage(); | 45 GetSupervisedUserMessage(); |
42 if (tray_view_) | 46 if (tray_view_) |
43 tray_view_->SetMessage(message); | 47 tray_view_->SetMessage(message); |
(...skipping 24 matching lines...) Expand all Loading... |
68 | 72 |
69 void TraySupervisedUser::UpdateAfterLoginStatusChange( | 73 void TraySupervisedUser::UpdateAfterLoginStatusChange( |
70 user::LoginStatus status) { | 74 user::LoginStatus status) { |
71 SystemTrayDelegate* delegate = Shell::GetInstance()->system_tray_delegate(); | 75 SystemTrayDelegate* delegate = Shell::GetInstance()->system_tray_delegate(); |
72 | 76 |
73 bool is_user_supervised = delegate->IsUserSupervised(); | 77 bool is_user_supervised = delegate->IsUserSupervised(); |
74 if (status == status_ && is_user_supervised == is_user_supervised_) | 78 if (status == status_ && is_user_supervised == is_user_supervised_) |
75 return; | 79 return; |
76 | 80 |
77 if (is_user_supervised && | 81 if (is_user_supervised && |
78 status_ != ash::user::LOGGED_IN_LOCKED) { | 82 status_ != ash::user::LOGGED_IN_LOCKED && |
79 CreateOrUpdateNotification(delegate->GetSupervisedUserMessage()); | 83 !delegate->GetSupervisedUserManager().empty()) |
80 } | 84 CreateOrUpdateSupervisedWarningNotification(); |
| 85 |
81 status_ = status; | 86 status_ = status; |
82 is_user_supervised_ = is_user_supervised; | 87 is_user_supervised_ = is_user_supervised; |
83 } | 88 } |
84 | 89 |
85 void TraySupervisedUser::CreateOrUpdateNotification( | 90 void TraySupervisedUser::CreateOrUpdateNotification( |
86 const base::string16& new_message) { | 91 const base::string16& new_message) { |
87 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); | 92 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); |
88 scoped_ptr<Notification> notification( | 93 scoped_ptr<Notification> notification( |
89 message_center::Notification::CreateSystemNotification( | 94 message_center::Notification::CreateSystemNotification( |
90 kNotificationId, | 95 kNotificationId, |
91 base::string16() /* no title */, | 96 base::string16() /* no title */, |
92 new_message, | 97 new_message, |
93 bundle.GetImageNamed(IDR_AURA_UBER_TRAY_SUPERVISED_USER), | 98 bundle.GetImageNamed(IDR_AURA_UBER_TRAY_SUPERVISED_USER), |
94 system_notifier::kNotifierSupervisedUser, | 99 system_notifier::kNotifierSupervisedUser, |
95 base::Closure() /* null callback */)); | 100 base::Closure() /* null callback */)); |
96 message_center::MessageCenter::Get()->AddNotification(notification.Pass()); | 101 message_center::MessageCenter::Get()->AddNotification(notification.Pass()); |
97 } | 102 } |
98 | 103 |
| 104 void TraySupervisedUser::CreateOrUpdateSupervisedWarningNotification() { |
| 105 SystemTrayDelegate* delegate = Shell::GetInstance()->system_tray_delegate(); |
| 106 CreateOrUpdateNotification(delegate->GetSupervisedUserMessage()); |
| 107 } |
| 108 |
| 109 void TraySupervisedUser::OnCustodianInfoChanged() { |
| 110 SystemTrayDelegate* delegate = Shell::GetInstance()->system_tray_delegate(); |
| 111 std::string manager_name = delegate->GetSupervisedUserManager(); |
| 112 if (!manager_name.empty()) { |
| 113 if (!message_center::MessageCenter::Get()->FindVisibleNotificationById( |
| 114 kNotificationId)) |
| 115 CreateOrUpdateSupervisedWarningNotification(); |
| 116 UpdateMessage(); |
| 117 } |
| 118 } |
| 119 |
99 } // namespace ash | 120 } // namespace ash |
OLD | NEW |