| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 void OnTermsOfServiceDeclined(); | 210 void OnTermsOfServiceDeclined(); |
| 211 void OnTermsOfServiceAccepted(); | 211 void OnTermsOfServiceAccepted(); |
| 212 void OnControllerPairingFinished(); | 212 void OnControllerPairingFinished(); |
| 213 void OnAutoEnrollmentCheckCompleted(); | 213 void OnAutoEnrollmentCheckCompleted(); |
| 214 | 214 |
| 215 // Callback invoked once it has been determined whether the device is disabled | 215 // Callback invoked once it has been determined whether the device is disabled |
| 216 // or not. | 216 // or not. |
| 217 void OnDeviceDisabledChecked(bool device_disabled); | 217 void OnDeviceDisabledChecked(bool device_disabled); |
| 218 | 218 |
| 219 // Callback function after setting MetricsReporting. | 219 // Callback function after setting MetricsReporting. |
| 220 void InitiateMetricsReportingChangeCallback(bool enabled); | 220 void OnChangedMetricsReportingState(bool enabled); |
| 221 | 221 |
| 222 // Loads brand code on I/O enabled thread and stores to Local State. | 222 // Loads brand code on I/O enabled thread and stores to Local State. |
| 223 void LoadBrandCodeFromFile(); | 223 void LoadBrandCodeFromFile(); |
| 224 | 224 |
| 225 // Called after all post-EULA blocking tasks have been completed. | 225 // Called after all post-EULA blocking tasks have been completed. |
| 226 void OnEulaBlockingTasksDone(); | 226 void OnEulaBlockingTasksDone(); |
| 227 | 227 |
| 228 // Shows update screen and starts update process. | 228 // Shows update screen and starts update process. |
| 229 void InitiateOOBEUpdate(); | 229 void InitiateOOBEUpdate(); |
| 230 | 230 |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 BaseScreen* hid_screen_ = nullptr; | 442 BaseScreen* hid_screen_ = nullptr; |
| 443 | 443 |
| 444 base::WeakPtrFactory<WizardController> weak_factory_; | 444 base::WeakPtrFactory<WizardController> weak_factory_; |
| 445 | 445 |
| 446 DISALLOW_COPY_AND_ASSIGN(WizardController); | 446 DISALLOW_COPY_AND_ASSIGN(WizardController); |
| 447 }; | 447 }; |
| 448 | 448 |
| 449 } // namespace chromeos | 449 } // namespace chromeos |
| 450 | 450 |
| 451 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 451 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| OLD | NEW |