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_USER_ACCOUNTS_DETAILED_VIEW_H_ | 5 #ifndef ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_ |
6 #define ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_ | 6 #define ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 namespace tray { | 24 namespace tray { |
25 | 25 |
26 // This detailed view appears after a click on the primary user's card when the | 26 // This detailed view appears after a click on the primary user's card when the |
27 // new account managment is enabled. | 27 // new account managment is enabled. |
28 class AccountsDetailedView : public TrayDetailsView, | 28 class AccountsDetailedView : public TrayDetailsView, |
29 public ViewClickListener, | 29 public ViewClickListener, |
30 public views::ButtonListener, | 30 public views::ButtonListener, |
31 public ash::tray::UserAccountsDelegate::Observer { | 31 public ash::tray::UserAccountsDelegate::Observer { |
32 public: | 32 public: |
33 AccountsDetailedView(TrayUser* owner, user::LoginStatus login_status); | 33 AccountsDetailedView(TrayUser* owner, user::LoginStatus login_status); |
34 virtual ~AccountsDetailedView(); | 34 ~AccountsDetailedView() override; |
35 | 35 |
36 private: | 36 private: |
37 // Overridden from ViewClickListener. | 37 // Overridden from ViewClickListener. |
38 virtual void OnViewClicked(views::View* sender) override; | 38 void OnViewClicked(views::View* sender) override; |
39 | 39 |
40 // Overridden from views::ButtonListener. | 40 // Overridden from views::ButtonListener. |
41 virtual void ButtonPressed(views::Button* sender, | 41 void ButtonPressed(views::Button* sender, const ui::Event& event) override; |
42 const ui::Event& event) override; | |
43 | 42 |
44 // Overridden from ash::tray::UserAccountsDelegate::Observer. | 43 // Overridden from ash::tray::UserAccountsDelegate::Observer. |
45 virtual void AccountListChanged() override; | 44 void AccountListChanged() override; |
46 | 45 |
47 void AddHeader(user::LoginStatus login_status); | 46 void AddHeader(user::LoginStatus login_status); |
48 void AddAccountList(); | 47 void AddAccountList(); |
49 void AddAddAccountButton(); | 48 void AddAddAccountButton(); |
50 void AddFooter(); | 49 void AddFooter(); |
51 | 50 |
52 void UpdateAccountList(); | 51 void UpdateAccountList(); |
53 | 52 |
54 views::View* CreateDeleteButton(); | 53 views::View* CreateDeleteButton(); |
55 | 54 |
56 ash::tray::UserAccountsDelegate* delegate_; | 55 ash::tray::UserAccountsDelegate* delegate_; |
57 views::View* account_list_; | 56 views::View* account_list_; |
58 views::View* add_account_button_; | 57 views::View* add_account_button_; |
59 views::View* add_user_button_; | 58 views::View* add_user_button_; |
60 std::map<views::View*, std::string> delete_button_to_account_id_; | 59 std::map<views::View*, std::string> delete_button_to_account_id_; |
61 | 60 |
62 DISALLOW_COPY_AND_ASSIGN(AccountsDetailedView); | 61 DISALLOW_COPY_AND_ASSIGN(AccountsDetailedView); |
63 }; | 62 }; |
64 | 63 |
65 } // namespace tray | 64 } // namespace tray |
66 } // namespace ash | 65 } // namespace ash |
67 | 66 |
68 #endif // ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_ | 67 #endif // ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_ |
OLD | NEW |