Index: chrome/browser/chromeos/login/login_utils.cc |
=================================================================== |
--- chrome/browser/chromeos/login/login_utils.cc (revision 136582) |
+++ chrome/browser/chromeos/login/login_utils.cc (working copy) |
@@ -717,22 +717,21 @@ |
VLOG(1) << "Launching browser..."; |
StartupBrowserCreator browser_creator; |
int return_code; |
- StartupBrowserCreator::IsFirstRun first_run = first_run::IsChromeFirstRun() ? |
- StartupBrowserCreator::IS_FIRST_RUN : |
- StartupBrowserCreator::IS_NOT_FIRST_RUN; |
+ browser::startup::IsFirstRun first_run = first_run::IsChromeFirstRun() ? |
+ browser::startup::IS_FIRST_RUN : |
+ browser::startup::IS_NOT_FIRST_RUN; |
browser_creator.LaunchBrowser(*CommandLine::ForCurrentProcess(), |
profile, |
FilePath(), |
- StartupBrowserCreator::IS_PROCESS_STARTUP, |
+ browser::startup::IS_PROCESS_STARTUP, |
first_run, |
&return_code); |
// Mark login host for deletion after browser starts. This |
// guarantees that the message loop will be referenced by the |
// browser before it is dereferenced by the login host. |
- if (login_host) { |
+ if (login_host) |
login_host->OnSessionStart(); |
- } |
UserManager::Get()->SessionStarted(); |
} |