Index: chrome/browser/chromeos/login/login_utils.cc |
diff --git a/chrome/browser/chromeos/login/login_utils.cc b/chrome/browser/chromeos/login/login_utils.cc |
index 30bed6822fc2036c022947f64baaf7436206460c..12b53921ff7a6cf58170c2d7436c449f16686089 100644 |
--- a/chrome/browser/chromeos/login/login_utils.cc |
+++ b/chrome/browser/chromeos/login/login_utils.cc |
@@ -23,6 +23,7 @@ |
#include "chrome/browser/chromeos/login/cookie_fetcher.h" |
#include "chrome/browser/chromeos/login/google_authenticator.h" |
#include "chrome/browser/chromeos/login/ownership_service.h" |
+#include "chrome/browser/chromeos/login/parallel_authenticator.h" |
#include "chrome/browser/chromeos/login/user_image_downloader.h" |
#include "chrome/browser/chromeos/login/user_manager.h" |
#include "chrome/browser/net/gaia/token_service.h" |
@@ -240,7 +241,10 @@ void LoginUtilsImpl::CompleteOffTheRecordLogin(const GURL& start_url) { |
Authenticator* LoginUtilsImpl::CreateAuthenticator( |
LoginStatusConsumer* consumer) { |
- return new GoogleAuthenticator(consumer); |
+ if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kParallelAuth)) |
+ return new ParallelAuthenticator(consumer); |
+ else |
+ return new GoogleAuthenticator(consumer); |
} |
void LoginUtilsImpl::EnableBrowserLaunch(bool enable) { |