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

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

Issue 7111033: Ties up OOBE controllers and WebUI handlers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 9 years, 6 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 b866e30adad22ed182f421bd9b63992dd3225386..a073a5b11293378995753c6182b3e6a0278846cc 100644
--- a/chrome/browser/chromeos/login/wizard_controller.cc
+++ b/chrome/browser/chromeos/login/wizard_controller.cc
@@ -240,7 +240,7 @@ void WizardController::ShowLoginScreen() {
host_->SetOobeProgress(chromeos::BackgroundView::SIGNIN);
host_->StartSignInScreen();
smooth_show_timer_.Stop();
- oobe_display_.reset(NULL);
+ oobe_display_ = NULL;
}
void WizardController::ShowUpdateScreen() {
@@ -456,7 +456,7 @@ void WizardController::SetCurrentScreen(WizardScreen* new_current) {
void WizardController::ShowCurrentScreen() {
// ShowCurrentScreen may get called by smooth_show_timer_ even after
// flow has been switched to sign in screen (ExistingUserController).
- if (!oobe_display_.get())
+ if (!oobe_display_)
return;
smooth_show_timer_.Stop();
« no previous file with comments | « chrome/browser/chromeos/login/wizard_controller.h ('k') | chrome/browser/chromeos/login/wizard_controller_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698