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

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

Issue 5641001: [cros] Fetch cookies after online authentication is successful. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 10 years 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
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.h ('k') | chrome/browser/chromeos/login/mock_authenticator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 11df756ca1e35950f18e2b6dcc17e0c1100c674e..8c7b81c6d27957b7dae91b826021ba082be26c9a 100644
--- a/chrome/browser/chromeos/login/login_utils.cc
+++ b/chrome/browser/chromeos/login/login_utils.cc
@@ -107,7 +107,8 @@ class LoginUtilsImpl : public LoginUtils {
virtual void CompleteLogin(
const std::string& username,
const std::string& password,
- const GaiaAuthConsumer::ClientLoginResult& credentials);
+ const GaiaAuthConsumer::ClientLoginResult& credentials,
+ bool pending_requests);
// Invoked after the tmpfs is successfully mounted.
// Launches a browser in the off the record (incognito) mode.
@@ -131,6 +132,17 @@ class LoginUtilsImpl : public LoginUtils {
// Warms the url used by authentication.
virtual void PrewarmAuthentication();
+ // Given the credentials try to exchange them for
+ // full-fledged Google authentication cookies.
+ virtual void FetchCookies(
+ Profile* profile,
+ const GaiaAuthConsumer::ClientLoginResult& credentials);
+
+ // Supply credentials for sync and others to use.
+ virtual void FetchTokens(
+ Profile* profile,
+ const GaiaAuthConsumer::ClientLoginResult& credentials);
+
private:
// Check user's profile for kApplicationLocale setting.
void RespectLocalePreference(PrefService* pref);
@@ -172,7 +184,8 @@ class LoginUtilsWrapper {
void LoginUtilsImpl::CompleteLogin(
const std::string& username,
const std::string& password,
- const GaiaAuthConsumer::ClientLoginResult& credentials) {
+ const GaiaAuthConsumer::ClientLoginResult& credentials,
+ bool pending_requests) {
BootTimesLoader* btl = BootTimesLoader::Get();
VLOG(1) << "Completing login for " << username;
@@ -223,15 +236,13 @@ void LoginUtilsImpl::CompleteLogin(
new ResetDefaultProxyConfigServiceTask(
proxy_config_service));
- // Take the credentials passed in and try to exchange them for
- // full-fledged Google authentication cookies. This is
- // best-effort; it's possible that we'll fail due to network
- // troubles or some such. Either way, |cf| will call
- // DoBrowserLaunch on the UI thread when it's done, and then
- // delete itself.
- CookieFetcher* cf = new CookieFetcher(profile);
- cf->AttemptFetch(credentials.data);
- btl->AddLoginTimeMarker("CookieFetchStarted", false);
+ // Since we're doing parallel authentication, only new user sign in
+ // would perform online auth before calling CompleteLogin.
+ // For existing users there's usually a pending online auth request.
+ // Cookies will be fetched after it's is succeeded.
+ if (!pending_requests) {
+ FetchCookies(profile, credentials);
+ }
// Init extension event routers; this normally happens in browser_main
// but on Chrome OS it has to be deferred until the user finishes
@@ -247,9 +258,11 @@ void LoginUtilsImpl::CompleteLogin(
token_service->Initialize(GaiaConstants::kChromeOSSource,
profile);
token_service->LoadTokensFromDB();
- token_service->UpdateCredentials(credentials);
- if (token_service->AreCredentialsValid()) {
- token_service->StartFetchingTokens();
+
+ // For existing users there's usually a pending online auth request.
+ // Tokens will be fetched after it's is succeeded.
+ if (!pending_requests) {
+ FetchTokens(profile, credentials);
}
btl->AddLoginTimeMarker("TokensGotten", false);
@@ -293,6 +306,29 @@ void LoginUtilsImpl::CompleteLogin(
DoBrowserLaunch(profile);
}
+void LoginUtilsImpl::FetchCookies(
+ Profile* profile,
+ const GaiaAuthConsumer::ClientLoginResult& credentials) {
+ // Take the credentials passed in and try to exchange them for
+ // full-fledged Google authentication cookies. This is
+ // best-effort; it's possible that we'll fail due to network
+ // troubles or some such.
+ // CookieFetcher will delete itself once done.
+ CookieFetcher* cf = new CookieFetcher(profile);
+ cf->AttemptFetch(credentials.data);
+ BootTimesLoader::Get()->AddLoginTimeMarker("CookieFetchStarted", false);
+}
+
+void LoginUtilsImpl::FetchTokens(
+ Profile* profile,
+ const GaiaAuthConsumer::ClientLoginResult& credentials) {
+ TokenService* token_service = profile->GetTokenService();
+ token_service->UpdateCredentials(credentials);
+ if (token_service->AreCredentialsValid()) {
+ token_service->StartFetchingTokens();
+ }
+}
+
void LoginUtilsImpl::RespectLocalePreference(PrefService* pref) {
std::string pref_locale = pref->GetString(prefs::kApplicationLocale);
if (pref_locale.empty()) {
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.h ('k') | chrome/browser/chromeos/login/mock_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698