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

Unified Diff: chrome/browser/chromeos/login/wizard_controller.cc

Issue 904163003: Reset Screen moved to ScreenContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: User actions introduced. Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/wizard_controller.cc
diff --git a/chrome/browser/chromeos/login/wizard_controller.cc b/chrome/browser/chromeos/login/wizard_controller.cc
index 8ec067b10d9772a06920f9d4ad0bddc74de9413f..085f780a350a07d811803e57278402255726d936 100644
--- a/chrome/browser/chromeos/login/wizard_controller.cc
+++ b/chrome/browser/chromeos/login/wizard_controller.cc
@@ -302,7 +302,8 @@ BaseScreen* WizardController::CreateScreen(const std::string& screen_name) {
return new EnrollmentScreen(this,
oobe_display_->GetEnrollmentScreenActor());
} else if (screen_name == kResetScreenName) {
- return new ResetScreen(this, oobe_display_->GetResetScreenActor());
+ return new chromeos::ResetScreen(this,
+ oobe_display_->GetResetView());
} else if (screen_name == kEnableDebuggingScreenName) {
return new EnableDebuggingScreen(
this, oobe_display_->GetEnableDebuggingScreenActor());

Powered by Google App Engine
This is Rietveld 408576698