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

Unified Diff: trunk/src/chrome/browser/chromeos/login/user_manager_impl.cc

Issue 137133007: Revert 246674 "Indicate which authentication flow was used in Us..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 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: trunk/src/chrome/browser/chromeos/login/user_manager_impl.cc
===================================================================
--- trunk/src/chrome/browser/chromeos/login/user_manager_impl.cc (revision 246711)
+++ trunk/src/chrome/browser/chromeos/login/user_manager_impl.cc (working copy)
@@ -1830,17 +1830,15 @@
if (!user_already_logged_in) {
// Will call OnProfilePrepared() once profile has been loaded.
- LoginUtils::Get()->PrepareProfile(
- UserContext(user_id,
- std::string(), // password
- std::string(), // auth_code
- user_id_hash,
- false, // using_oauth
- UserContext::AUTH_FLOW_OFFLINE),
- std::string(), // display_email
- false, // has_cookies
- true, // has_active_session
- this);
+ LoginUtils::Get()->PrepareProfile(UserContext(user_id,
+ std::string(), // password
+ std::string(), // auth_code
+ user_id_hash,
+ false), // using_oauth
+ std::string(), // display_email
+ false, // has_cookies
+ true, // has_active_session
+ this);
} else {
RestorePendingUserSessions();
}

Powered by Google App Engine
This is Rietveld 408576698