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

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

Issue 3442009: [Chrome OS] Attempt offline and online login simultaneously (Closed)
Patch Set: Fix crash on data recover Created 10 years, 2 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/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) {

Powered by Google App Engine
This is Rietveld 408576698