| 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 33b223df551dc0ca3b2d0d1827153987c2deba47..0878421c402c0b3f89c51c908699ee13f4011771 100644
|
| --- a/chrome/browser/chromeos/login/wizard_controller.cc
|
| +++ b/chrome/browser/chromeos/login/wizard_controller.cc
|
| @@ -325,8 +325,8 @@ void WizardController::Init(const std::string& first_screen_name) {
|
| // or when resuming an OOBE that had it disabled or unset. We use an if/else
|
| // here to try and not set state when it is the default value so it can
|
| // change and affect the OOBE again.
|
| - if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| - chromeos::switches::kDisableMdOobe))
|
| + if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| + chromeos::switches::kEnableMdOobe))
|
| SetShowMdOobe(false);
|
| else if ((screen_pref.empty() ||
|
| GetLocalState()->HasPrefPath(prefs::kOobeMdMode)) ||
|
|
|