| 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 <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 | 346 |
| 347 // Value of the screen name that WizardController was started with. | 347 // Value of the screen name that WizardController was started with. |
| 348 std::string first_screen_name_; | 348 std::string first_screen_name_; |
| 349 | 349 |
| 350 // OOBE/login display host. | 350 // OOBE/login display host. |
| 351 LoginDisplayHost* host_; | 351 LoginDisplayHost* host_; |
| 352 | 352 |
| 353 // Default WizardController. | 353 // Default WizardController. |
| 354 static WizardController* default_controller_; | 354 static WizardController* default_controller_; |
| 355 | 355 |
| 356 base::OneShotTimer<WizardController> smooth_show_timer_; | 356 base::OneShotTimer smooth_show_timer_; |
| 357 | 357 |
| 358 OobeDisplay* oobe_display_; | 358 OobeDisplay* oobe_display_; |
| 359 | 359 |
| 360 // State of Usage stat/error reporting checkbox on EULA screen | 360 // State of Usage stat/error reporting checkbox on EULA screen |
| 361 // during wizard lifetime. | 361 // during wizard lifetime. |
| 362 bool usage_statistics_reporting_; | 362 bool usage_statistics_reporting_; |
| 363 | 363 |
| 364 // If true then update check is cancelled and enrollment is started after | 364 // If true then update check is cancelled and enrollment is started after |
| 365 // EULA is accepted. | 365 // EULA is accepted. |
| 366 bool skip_update_enroll_after_eula_; | 366 bool skip_update_enroll_after_eula_; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 BaseScreen* hid_screen_; | 428 BaseScreen* hid_screen_; |
| 429 | 429 |
| 430 base::WeakPtrFactory<WizardController> weak_factory_; | 430 base::WeakPtrFactory<WizardController> weak_factory_; |
| 431 | 431 |
| 432 DISALLOW_COPY_AND_ASSIGN(WizardController); | 432 DISALLOW_COPY_AND_ASSIGN(WizardController); |
| 433 }; | 433 }; |
| 434 | 434 |
| 435 } // namespace chromeos | 435 } // namespace chromeos |
| 436 | 436 |
| 437 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 437 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
| OLD | NEW |