| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 181 |
| 182 // Links and buttons displayed in the active profile card. | 182 // Links and buttons displayed in the active profile card. |
| 183 views::Link* manage_accounts_link_; | 183 views::Link* manage_accounts_link_; |
| 184 views::LabelButton* manage_accounts_button_; | 184 views::LabelButton* manage_accounts_button_; |
| 185 views::LabelButton* signin_current_profile_button_; | 185 views::LabelButton* signin_current_profile_button_; |
| 186 views::LabelButton* auth_error_email_button_; | |
| 187 | 186 |
| 188 // For material design user menu, the active profile card owns the profile | 187 // For material design user menu, the active profile card owns the profile |
| 189 // name and photo. | 188 // name and photo. |
| 190 views::LabelButton* current_profile_card_; | 189 views::LabelButton* current_profile_card_; |
| 191 | 190 |
| 192 // Action buttons. | 191 // Action buttons. |
| 193 views::LabelButton* first_profile_button_; | 192 views::LabelButton* first_profile_button_; |
| 194 views::LabelButton* guest_profile_button_; | 193 views::LabelButton* guest_profile_button_; |
| 195 views::LabelButton* users_button_; | 194 views::LabelButton* users_button_; |
| 196 views::LabelButton* go_incognito_button_; | 195 views::LabelButton* go_incognito_button_; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 219 // The GAIA service type provided in the response header. | 218 // The GAIA service type provided in the response header. |
| 220 signin::GAIAServiceType gaia_service_type_; | 219 signin::GAIAServiceType gaia_service_type_; |
| 221 | 220 |
| 222 // The current access point of sign in. | 221 // The current access point of sign in. |
| 223 const signin_metrics::AccessPoint access_point_; | 222 const signin_metrics::AccessPoint access_point_; |
| 224 | 223 |
| 225 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); | 224 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); |
| 226 }; | 225 }; |
| 227 | 226 |
| 228 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 227 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| OLD | NEW |