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

Side by Side Diff: chrome/browser/chromeos/login/ui/login_display_host.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_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/callback_list.h" 11 #include "base/callback_list.h"
12 #include "chrome/browser/chromeos/customization/customization_document.h" 12 #include "chrome/browser/chromeos/customization/customization_document.h"
13 #include "chrome/browser/chromeos/login/ui/login_display.h" 13 #include "chrome/browser/chromeos/login/ui/login_display.h"
14 #include "ui/gfx/native_widget_types.h" 14 #include "ui/gfx/native_widget_types.h"
15 15
16 namespace views {
17 class Widget;
18 } // namespace views
19
20 namespace chromeos { 16 namespace chromeos {
21 17
22 class AppLaunchController; 18 class AppLaunchController;
23 class AutoEnrollmentController; 19 class AutoEnrollmentController;
24 class LoginScreenContext; 20 class LoginScreenContext;
25 class OobeUI; 21 class OobeUI;
26 class WebUILoginView; 22 class WebUILoginView;
27 class WizardController; 23 class WizardController;
28 24
29 // An interface that defines OOBE/login screen host. 25 // An interface that defines OOBE/login screen host.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 virtual void StartDemoAppLaunch() = 0; 105 virtual void StartDemoAppLaunch() = 0;
110 106
111 protected: 107 protected:
112 // Default LoginDisplayHost. Child class sets the reference. 108 // Default LoginDisplayHost. Child class sets the reference.
113 static LoginDisplayHost* default_host_; 109 static LoginDisplayHost* default_host_;
114 }; 110 };
115 111
116 } // namespace chromeos 112 } // namespace chromeos
117 113
118 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_H_ 114 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOGIN_DISPLAY_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698