| Index: chrome/browser/chromeos/login/wizard_in_process_browser_test.cc
|
| diff --git a/chrome/browser/chromeos/login/wizard_in_process_browser_test.cc b/chrome/browser/chromeos/login/wizard_in_process_browser_test.cc
|
| index 98d864dc4b34a3d939dc7750463f084f87bbe680..7f72f98b61ebbf788c84c5991b7409c6f030d4d2 100644
|
| --- a/chrome/browser/chromeos/login/wizard_in_process_browser_test.cc
|
| +++ b/chrome/browser/chromeos/login/wizard_in_process_browser_test.cc
|
| @@ -20,8 +20,10 @@ WizardInProcessBrowserTest::WizardInProcessBrowserTest(const char* screen_name)
|
| Browser* WizardInProcessBrowserTest::CreateBrowser(Profile* profile) {
|
| SetUpWizard();
|
|
|
| - browser::ShowLoginWizard(screen_name_.c_str(), gfx::Size(1024, 600));
|
| - controller_ = WizardController::default_controller();
|
| + if (!screen_name_.empty()) {
|
| + browser::ShowLoginWizard(screen_name_.c_str(), gfx::Size(1024, 600));
|
| + controller_ = WizardController::default_controller();
|
| + }
|
| return NULL;
|
| }
|
|
|
|
|