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 <map> | 8 #include <map> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 | 203 |
204 // Buttons associated with the current profile. | 204 // Buttons associated with the current profile. |
205 AccountButtonIndexes delete_account_button_map_; | 205 AccountButtonIndexes delete_account_button_map_; |
206 AccountButtonIndexes reauth_account_button_map_; | 206 AccountButtonIndexes reauth_account_button_map_; |
207 | 207 |
208 // Links and buttons displayed in the tutorial card. | 208 // Links and buttons displayed in the tutorial card. |
209 views::LabelButton* tutorial_sync_settings_ok_button_; | 209 views::LabelButton* tutorial_sync_settings_ok_button_; |
210 views::Link* tutorial_sync_settings_link_; | 210 views::Link* tutorial_sync_settings_link_; |
211 views::LabelButton* tutorial_see_whats_new_button_; | 211 views::LabelButton* tutorial_see_whats_new_button_; |
212 views::Link* tutorial_not_you_link_; | 212 views::Link* tutorial_not_you_link_; |
| 213 views::Link* tutorial_learn_more_link_; |
213 views::ImageButton* tutorial_close_button_; | 214 views::ImageButton* tutorial_close_button_; |
214 | 215 |
215 // Links and buttons displayed in the active profile card. | 216 // Links and buttons displayed in the active profile card. |
216 views::Link* manage_accounts_link_; | 217 views::Link* manage_accounts_link_; |
217 views::LabelButton* signin_current_profile_link_; | 218 views::LabelButton* signin_current_profile_link_; |
218 views::LabelButton* auth_error_email_button_; | 219 views::LabelButton* auth_error_email_button_; |
219 | 220 |
220 // The profile name and photo in the active profile card. Owned by the | 221 // The profile name and photo in the active profile card. Owned by the |
221 // views hierarchy. | 222 // views hierarchy. |
222 EditableProfilePhoto* current_profile_photo_; | 223 EditableProfilePhoto* current_profile_photo_; |
(...skipping 26 matching lines...) Expand all Loading... |
249 // The current tutorial mode. | 250 // The current tutorial mode. |
250 profiles::TutorialMode tutorial_mode_; | 251 profiles::TutorialMode tutorial_mode_; |
251 | 252 |
252 // The GAIA service type provided in the response header. | 253 // The GAIA service type provided in the response header. |
253 signin::GAIAServiceType gaia_service_type_; | 254 signin::GAIAServiceType gaia_service_type_; |
254 | 255 |
255 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); | 256 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); |
256 }; | 257 }; |
257 | 258 |
258 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 259 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
OLD | NEW |