| Index: chrome/browser/chromeos/login/existing_user_controller.cc
|
| diff --git a/chrome/browser/chromeos/login/existing_user_controller.cc b/chrome/browser/chromeos/login/existing_user_controller.cc
|
| index 1b8744eba4ad796ed3afd487f74192a6939e20bc..662227e1478ad2ea80e577f7e8b6cded83f6d452 100644
|
| --- a/chrome/browser/chromeos/login/existing_user_controller.cc
|
| +++ b/chrome/browser/chromeos/login/existing_user_controller.cc
|
| @@ -471,6 +471,10 @@ void ExistingUserController::OnStartEnterpriseEnrollment() {
|
| weak_factory_.GetWeakPtr()));
|
| }
|
|
|
| +void ExistingUserController::OnStartDeviceReset() {
|
| + ShowResetScreen();
|
| +}
|
| +
|
| void ExistingUserController::OnEnrollmentOwnershipCheckCompleted(
|
| DeviceSettingsService::OwnershipStatus status,
|
| bool current_user_is_owner) {
|
| @@ -505,6 +509,11 @@ void ExistingUserController::ShowEnrollmentScreen(bool is_auto_enrollment,
|
| login_display_->OnFadeOut();
|
| }
|
|
|
| +void ExistingUserController::ShowResetScreen() {
|
| + host_->StartWizard(WizardController::kResetScreenName, NULL);
|
| + login_display_->OnFadeOut();
|
| +}
|
| +
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // ExistingUserController, LoginPerformer::Delegate implementation:
|
| //
|
|
|