Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1285)

Side by Side Diff: chrome/browser/chromeos/login/wizard_controller.h

Issue 2341613006: cros: Fix MD OOBE crash (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698