Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: chrome/browser/ui/views/profiles/profile_chooser_view.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698