| 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 |
| 11 #include "ash/system/tray/tray_details_view.h" | 11 #include "ash/system/tray/tray_details_view.h" |
| 12 #include "ash/system/tray/view_click_listener.h" | 12 #include "ash/system/tray/view_click_listener.h" |
| 13 #include "ash/system/user/login_status.h" | 13 #include "ash/system/user/login_status.h" |
| 14 #include "ash/system/user/user_accounts_delegate.h" | 14 #include "ash/system/user/user_accounts_delegate.h" |
| 15 #include "ash/system/user/user_view.h" | 15 #include "ash/system/user/user_view.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "grit/ash_strings.h" | |
| 18 #include "ui/views/controls/button/button.h" | 17 #include "ui/views/controls/button/button.h" |
| 19 #include "ui/views/controls/label.h" | 18 #include "ui/views/controls/label.h" |
| 20 | 19 |
| 21 namespace ash { | 20 namespace ash { |
| 22 | 21 |
| 23 class TrayUser; | 22 class TrayUser; |
| 24 | 23 |
| 25 namespace tray { | 24 namespace tray { |
| 26 | 25 |
| 27 // 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 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 views::View* add_user_button_; | 59 views::View* add_user_button_; |
| 61 std::map<views::View*, std::string> delete_button_to_account_id_; | 60 std::map<views::View*, std::string> delete_button_to_account_id_; |
| 62 | 61 |
| 63 DISALLOW_COPY_AND_ASSIGN(AccountsDetailedView); | 62 DISALLOW_COPY_AND_ASSIGN(AccountsDetailedView); |
| 64 }; | 63 }; |
| 65 | 64 |
| 66 } // namespace tray | 65 } // namespace tray |
| 67 } // namespace ash | 66 } // namespace ash |
| 68 | 67 |
| 69 #endif // ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_ | 68 #endif // ASH_SYSTEM_USER_ACCOUNTS_DETAILED_VIEW_H_ |
| OLD | NEW |