| 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 CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 // Buttons associated with the current profile. | 171 // Buttons associated with the current profile. |
| 172 AccountButtonIndexes delete_account_button_map_; | 172 AccountButtonIndexes delete_account_button_map_; |
| 173 AccountButtonIndexes reauth_account_button_map_; | 173 AccountButtonIndexes reauth_account_button_map_; |
| 174 | 174 |
| 175 // Buttons in the signin/sync error header on top of the desktop user menu. | 175 // Buttons in the signin/sync error header on top of the desktop user menu. |
| 176 views::LabelButton* sync_error_signin_button_; | 176 views::LabelButton* sync_error_signin_button_; |
| 177 views::LabelButton* sync_error_passphrase_button_; | 177 views::LabelButton* sync_error_passphrase_button_; |
| 178 views::LabelButton* sync_error_upgrade_button_; | 178 views::LabelButton* sync_error_upgrade_button_; |
| 179 views::LabelButton* sync_error_signin_again_button_; | 179 views::LabelButton* sync_error_signin_again_button_; |
| 180 views::LabelButton* sync_error_signout_button_; | 180 views::LabelButton* sync_error_signout_button_; |
| 181 views::LabelButton* sync_error_settings_unconfirmed_button_; |
| 181 | 182 |
| 182 // Links and buttons displayed in the active profile card. | 183 // Links and buttons displayed in the active profile card. |
| 183 views::Link* manage_accounts_link_; | 184 views::Link* manage_accounts_link_; |
| 184 views::LabelButton* manage_accounts_button_; | 185 views::LabelButton* manage_accounts_button_; |
| 185 views::LabelButton* signin_current_profile_button_; | 186 views::LabelButton* signin_current_profile_button_; |
| 186 | 187 |
| 187 // For material design user menu, the active profile card owns the profile | 188 // For material design user menu, the active profile card owns the profile |
| 188 // name and photo. | 189 // name and photo. |
| 189 views::LabelButton* current_profile_card_; | 190 views::LabelButton* current_profile_card_; |
| 190 | 191 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 218 // The GAIA service type provided in the response header. | 219 // The GAIA service type provided in the response header. |
| 219 signin::GAIAServiceType gaia_service_type_; | 220 signin::GAIAServiceType gaia_service_type_; |
| 220 | 221 |
| 221 // The current access point of sign in. | 222 // The current access point of sign in. |
| 222 const signin_metrics::AccessPoint access_point_; | 223 const signin_metrics::AccessPoint access_point_; |
| 223 | 224 |
| 224 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); | 225 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); |
| 225 }; | 226 }; |
| 226 | 227 |
| 227 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 228 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| OLD | NEW |