| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WIZARD_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 void ShowEnrollmentScreen(); | 146 void ShowEnrollmentScreen(); |
| 147 void ShowResetScreen(); | 147 void ShowResetScreen(); |
| 148 void ShowKioskAutolaunchScreen(); | 148 void ShowKioskAutolaunchScreen(); |
| 149 void ShowEnableDebuggingScreen(); | 149 void ShowEnableDebuggingScreen(); |
| 150 void ShowKioskEnableScreen(); | 150 void ShowKioskEnableScreen(); |
| 151 void ShowTermsOfServiceScreen(); | 151 void ShowTermsOfServiceScreen(); |
| 152 void ShowArcTermsOfServiceScreen(); | 152 void ShowArcTermsOfServiceScreen(); |
| 153 void ShowWrongHWIDScreen(); | 153 void ShowWrongHWIDScreen(); |
| 154 void ShowAutoEnrollmentCheckScreen(); | 154 void ShowAutoEnrollmentCheckScreen(); |
| 155 void ShowSupervisedUserCreationScreen(); | 155 void ShowSupervisedUserCreationScreen(); |
| 156 void ShowArcKioskSplashScreen(); |
| 156 void ShowHIDDetectionScreen(); | 157 void ShowHIDDetectionScreen(); |
| 157 void ShowControllerPairingScreen(); | 158 void ShowControllerPairingScreen(); |
| 158 void ShowHostPairingScreen(); | 159 void ShowHostPairingScreen(); |
| 159 void ShowDeviceDisabledScreen(); | 160 void ShowDeviceDisabledScreen(); |
| 160 | 161 |
| 161 // Shows images login screen. | 162 // Shows images login screen. |
| 162 void ShowLoginScreen(const LoginScreenContext& context); | 163 void ShowLoginScreen(const LoginScreenContext& context); |
| 163 | 164 |
| 164 // Exit handlers: | 165 // Exit handlers: |
| 165 void OnHIDDetectionCompleted(); | 166 void OnHIDDetectionCompleted(); |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 BaseScreen* hid_screen_ = nullptr; | 423 BaseScreen* hid_screen_ = nullptr; |
| 423 | 424 |
| 424 base::WeakPtrFactory<WizardController> weak_factory_; | 425 base::WeakPtrFactory<WizardController> weak_factory_; |
| 425 | 426 |
| 426 DISALLOW_COPY_AND_ASSIGN(WizardController); | 427 DISALLOW_COPY_AND_ASSIGN(WizardController); |
| 427 }; | 428 }; |
| 428 | 429 |
| 429 } // namespace chromeos | 430 } // namespace chromeos |
| 430 | 431 |
| 431 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 432 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| OLD | NEW |