| 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 10 matching lines...) Expand all Loading... |
| 21 #include "google_apis/gaia/oauth2_token_service.h" | 21 #include "google_apis/gaia/oauth2_token_service.h" |
| 22 #include "ui/views/bubble/bubble_dialog_delegate.h" | 22 #include "ui/views/bubble/bubble_dialog_delegate.h" |
| 23 #include "ui/views/controls/button/button.h" | 23 #include "ui/views/controls/button/button.h" |
| 24 #include "ui/views/controls/link_listener.h" | 24 #include "ui/views/controls/link_listener.h" |
| 25 #include "ui/views/controls/styled_label_listener.h" | 25 #include "ui/views/controls/styled_label_listener.h" |
| 26 #include "ui/views/controls/textfield/textfield_controller.h" | 26 #include "ui/views/controls/textfield/textfield_controller.h" |
| 27 | 27 |
| 28 class EditableProfilePhoto; | 28 class EditableProfilePhoto; |
| 29 class EditableProfileName; | 29 class EditableProfileName; |
| 30 | 30 |
| 31 namespace gfx { | |
| 32 class Image; | |
| 33 } | |
| 34 | |
| 35 namespace views { | 31 namespace views { |
| 36 class GridLayout; | 32 class GridLayout; |
| 37 class ImageButton; | 33 class ImageButton; |
| 38 class Link; | 34 class Link; |
| 39 class LabelButton; | 35 class LabelButton; |
| 40 } | 36 } |
| 41 | 37 |
| 42 class Browser; | 38 class Browser; |
| 43 | 39 |
| 44 // This bubble view is displayed when the user clicks on the avatar button. | 40 // This bubble view is displayed when the user clicks on the avatar button. |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 // The GAIA service type provided in the response header. | 290 // The GAIA service type provided in the response header. |
| 295 signin::GAIAServiceType gaia_service_type_; | 291 signin::GAIAServiceType gaia_service_type_; |
| 296 | 292 |
| 297 // The current access point of sign in. | 293 // The current access point of sign in. |
| 298 const signin_metrics::AccessPoint access_point_; | 294 const signin_metrics::AccessPoint access_point_; |
| 299 | 295 |
| 300 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); | 296 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); |
| 301 }; | 297 }; |
| 302 | 298 |
| 303 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 299 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| OLD | NEW |