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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 std::string first_screen_name_; | 365 std::string first_screen_name_; |
366 | 366 |
367 // OOBE/login display host. | 367 // OOBE/login display host. |
368 LoginDisplayHost* host_ = nullptr; | 368 LoginDisplayHost* host_ = nullptr; |
369 | 369 |
370 // Default WizardController. | 370 // Default WizardController. |
371 static WizardController* default_controller_; | 371 static WizardController* default_controller_; |
372 | 372 |
373 base::OneShotTimer smooth_show_timer_; | 373 base::OneShotTimer smooth_show_timer_; |
374 | 374 |
375 OobeUI* oobe_ui_ = nullptr; | 375 OobeUI* const oobe_ui_; |
376 | 376 |
377 // State of Usage stat/error reporting checkbox on EULA screen | 377 // State of Usage stat/error reporting checkbox on EULA screen |
378 // during wizard lifetime. | 378 // during wizard lifetime. |
379 bool usage_statistics_reporting_ = true; | 379 bool usage_statistics_reporting_ = true; |
380 | 380 |
381 // If true then update check is cancelled and enrollment is started after | 381 // If true then update check is cancelled and enrollment is started after |
382 // EULA is accepted. | 382 // EULA is accepted. |
383 bool skip_update_enroll_after_eula_ = false; | 383 bool skip_update_enroll_after_eula_ = false; |
384 | 384 |
385 // The prescribed enrollment configuration for the device. | 385 // The prescribed enrollment configuration for the device. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 BaseScreen* hid_screen_ = nullptr; | 446 BaseScreen* hid_screen_ = nullptr; |
447 | 447 |
448 base::WeakPtrFactory<WizardController> weak_factory_; | 448 base::WeakPtrFactory<WizardController> weak_factory_; |
449 | 449 |
450 DISALLOW_COPY_AND_ASSIGN(WizardController); | 450 DISALLOW_COPY_AND_ASSIGN(WizardController); |
451 }; | 451 }; |
452 | 452 |
453 } // namespace chromeos | 453 } // namespace chromeos |
454 | 454 |
455 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ | 455 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_CONTROLLER_H_ |
OLD | NEW |