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 #ifndef ASH_SYSTEM_CHROMEOS_SUPERVISED_TRAY_SUPERVISED_USER_H | 5 #ifndef ASH_SYSTEM_CHROMEOS_SUPERVISED_TRAY_SUPERVISED_USER_H |
6 #define ASH_SYSTEM_CHROMEOS_SUPERVISED_TRAY_SUPERVISED_USER_H | 6 #define ASH_SYSTEM_CHROMEOS_SUPERVISED_TRAY_SUPERVISED_USER_H |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/system/chromeos/supervised/custodian_info_tray_observer.h" |
9 #include "ash/system/tray/system_tray_item.h" | 10 #include "ash/system/tray/system_tray_item.h" |
10 #include "ash/system/tray/view_click_listener.h" | 11 #include "ash/system/tray/view_click_listener.h" |
11 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
12 | 13 |
13 namespace ash { | 14 namespace ash { |
14 class LabelTrayView; | 15 class LabelTrayView; |
15 class SystemTray; | 16 class SystemTray; |
16 | 17 |
17 class ASH_EXPORT TraySupervisedUser : public SystemTrayItem, | 18 class ASH_EXPORT TraySupervisedUser : public SystemTrayItem, |
18 public ViewClickListener { | 19 public ViewClickListener, |
| 20 public CustodianInfoTrayObserver { |
19 public: | 21 public: |
20 explicit TraySupervisedUser(SystemTray* system_tray); | 22 explicit TraySupervisedUser(SystemTray* system_tray); |
21 virtual ~TraySupervisedUser(); | 23 virtual ~TraySupervisedUser(); |
22 | 24 |
23 // If message is not empty updates content of default view, otherwise hides | 25 // If message is not empty updates content of default view, otherwise hides |
24 // tray items. | 26 // tray items. |
25 void UpdateMessage(); | 27 void UpdateMessage(); |
26 | 28 |
27 // Overridden from SystemTrayItem. | 29 // Overridden from SystemTrayItem. |
28 virtual views::View* CreateDefaultView(user::LoginStatus status) override; | 30 virtual views::View* CreateDefaultView(user::LoginStatus status) override; |
29 virtual void DestroyDefaultView() override; | 31 virtual void DestroyDefaultView() override; |
30 virtual void UpdateAfterLoginStatusChange(user::LoginStatus status) override; | 32 virtual void UpdateAfterLoginStatusChange(user::LoginStatus status) override; |
31 | 33 |
32 // Overridden from ViewClickListener. | 34 // Overridden from ViewClickListener. |
33 virtual void OnViewClicked(views::View* sender) override; | 35 virtual void OnViewClicked(views::View* sender) override; |
34 | 36 |
| 37 // Overridden from CustodianInfoTrayObserver: |
| 38 virtual void OnCustodianInfoChanged() override; |
| 39 |
35 private: | 40 private: |
36 friend class TraySupervisedUserTest; | 41 friend class TraySupervisedUserTest; |
37 | 42 |
38 static const char kNotificationId[]; | 43 static const char kNotificationId[]; |
39 | 44 |
40 void CreateOrUpdateNotification(const base::string16& new_message); | 45 void CreateOrUpdateNotification(const base::string16& new_message); |
41 | 46 |
| 47 void CreateOrUpdateSupervisedWarningNotification(); |
| 48 |
42 LabelTrayView* tray_view_; | 49 LabelTrayView* tray_view_; |
| 50 |
43 // Previous login status to avoid showing notification upon unlock. | 51 // Previous login status to avoid showing notification upon unlock. |
44 user::LoginStatus status_; | 52 user::LoginStatus status_; |
45 | 53 |
46 // Previous user supervised state to avoid showing notification upon unlock. | 54 // Previous user supervised state to avoid showing notification upon unlock. |
47 bool is_user_supervised_; | 55 bool is_user_supervised_; |
48 | 56 |
49 DISALLOW_COPY_AND_ASSIGN(TraySupervisedUser); | 57 DISALLOW_COPY_AND_ASSIGN(TraySupervisedUser); |
50 }; | 58 }; |
51 | 59 |
52 } // namespace ash | 60 } // namespace ash |
53 | 61 |
54 #endif // ASH_SYSTEM_CHROMEOS_SUPERVISED_TRAY_SUPERVISED_USER_H | 62 #endif // ASH_SYSTEM_CHROMEOS_SUPERVISED_TRAY_SUPERVISED_USER_H |
OLD | NEW |