| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 views::LabelButton* signin_current_profile_link_; | 240 views::LabelButton* signin_current_profile_link_; |
| 241 views::LabelButton* auth_error_email_button_; | 241 views::LabelButton* auth_error_email_button_; |
| 242 | 242 |
| 243 // The profile name and photo in the active profile card. Owned by the | 243 // The profile name and photo in the active profile card. Owned by the |
| 244 // views hierarchy. | 244 // views hierarchy. |
| 245 EditableProfilePhoto* current_profile_photo_; | 245 EditableProfilePhoto* current_profile_photo_; |
| 246 EditableProfileName* current_profile_name_; | 246 EditableProfileName* current_profile_name_; |
| 247 | 247 |
| 248 // Action buttons. | 248 // Action buttons. |
| 249 views::LabelButton* users_button_; | 249 views::LabelButton* users_button_; |
| 250 views::LabelButton* go_incognito_button_; |
| 250 views::LabelButton* lock_button_; | 251 views::LabelButton* lock_button_; |
| 251 views::Link* add_account_link_; | 252 views::Link* add_account_link_; |
| 252 | 253 |
| 253 // Buttons displayed in the gaia signin view. | 254 // Buttons displayed in the gaia signin view. |
| 254 views::ImageButton* gaia_signin_cancel_button_; | 255 views::ImageButton* gaia_signin_cancel_button_; |
| 255 | 256 |
| 256 // Links and buttons displayed in the account removal view. | 257 // Links and buttons displayed in the account removal view. |
| 257 views::LabelButton* remove_account_button_; | 258 views::LabelButton* remove_account_button_; |
| 258 views::ImageButton* account_removal_cancel_button_; | 259 views::ImageButton* account_removal_cancel_button_; |
| 259 | 260 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 274 // The GAIA service type provided in the response header. | 275 // The GAIA service type provided in the response header. |
| 275 signin::GAIAServiceType gaia_service_type_; | 276 signin::GAIAServiceType gaia_service_type_; |
| 276 | 277 |
| 277 // The current access point of sign in. | 278 // The current access point of sign in. |
| 278 const signin_metrics::AccessPoint access_point_; | 279 const signin_metrics::AccessPoint access_point_; |
| 279 | 280 |
| 280 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); | 281 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); |
| 281 }; | 282 }; |
| 282 | 283 |
| 283 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 284 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| OLD | NEW |