| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 void ShowTermsOfServiceScreen(); | 139 void ShowTermsOfServiceScreen(); |
| 140 void ShowArcTermsOfServiceScreen(); | 140 void ShowArcTermsOfServiceScreen(); |
| 141 void ShowWrongHWIDScreen(); | 141 void ShowWrongHWIDScreen(); |
| 142 void ShowAutoEnrollmentCheckScreen(); | 142 void ShowAutoEnrollmentCheckScreen(); |
| 143 void ShowSupervisedUserCreationScreen(); | 143 void ShowSupervisedUserCreationScreen(); |
| 144 void ShowArcKioskSplashScreen(); | 144 void ShowArcKioskSplashScreen(); |
| 145 void ShowHIDDetectionScreen(); | 145 void ShowHIDDetectionScreen(); |
| 146 void ShowControllerPairingScreen(); | 146 void ShowControllerPairingScreen(); |
| 147 void ShowHostPairingScreen(); | 147 void ShowHostPairingScreen(); |
| 148 void ShowDeviceDisabledScreen(); | 148 void ShowDeviceDisabledScreen(); |
| 149 void ShowEncryptionMigrationScreen(); |
| 149 | 150 |
| 150 // Shows images login screen. | 151 // Shows images login screen. |
| 151 void ShowLoginScreen(const LoginScreenContext& context); | 152 void ShowLoginScreen(const LoginScreenContext& context); |
| 152 | 153 |
| 153 // Exit handlers: | 154 // Exit handlers: |
| 154 void OnHIDDetectionCompleted(); | 155 void OnHIDDetectionCompleted(); |
| 155 void OnNetworkConnected(); | 156 void OnNetworkConnected(); |
| 156 void OnNetworkOffline(); | 157 void OnNetworkOffline(); |
| 157 void OnConnectionFailed(); | 158 void OnConnectionFailed(); |
| 158 void OnUpdateCompleted(); | 159 void OnUpdateCompleted(); |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 BaseScreen* hid_screen_ = nullptr; | 413 BaseScreen* hid_screen_ = nullptr; |
| 413 | 414 |
| 414 base::WeakPtrFactory<WizardController> weak_factory_; | 415 base::WeakPtrFactory<WizardController> weak_factory_; |
| 415 | 416 |
| 416 DISALLOW_COPY_AND_ASSIGN(WizardController); | 417 DISALLOW_COPY_AND_ASSIGN(WizardController); |
| 417 }; | 418 }; |
| 418 | 419 |
| 419 } // namespace chromeos | 420 } // namespace chromeos |
| 420 | 421 |
| 421 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 422 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| OLD | NEW |