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

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

Issue 540323002: Fixed missing dot in username (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/existing_user_controller.cc
diff --git a/chrome/browser/chromeos/login/existing_user_controller.cc b/chrome/browser/chromeos/login/existing_user_controller.cc
index 0030ed745457717028b2b31196e80037a1cce78a..719dd95cfede65aa0b8236ce0617067d31c1389d 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.cc
+++ b/chrome/browser/chromeos/login/existing_user_controller.cc
@@ -860,18 +860,18 @@ void ExistingUserController::OnAuthSuccess(const UserContext& user_context) {
login_performer_->set_delegate(NULL);
ignore_result(login_performer_.release());
+ // Will call OnProfilePrepared() in the end.
+ LoginUtils::Get()->PrepareProfile(user_context,
+ has_auth_cookies,
+ false, // Start session for user.
+ this);
+
// Update user's displayed email.
if (!display_email_.empty()) {
Roman Sorokin (ftl) 2014/09/05 12:10:35 SaveUserDisplayEmail does nothing cause cannot fin
user_manager::UserManager::Get()->SaveUserDisplayEmail(
user_context.GetUserID(), display_email_);
display_email_.clear();
}
-
- // Will call OnProfilePrepared() in the end.
- LoginUtils::Get()->PrepareProfile(user_context,
- has_auth_cookies,
- false, // Start session for user.
- this);
}
void ExistingUserController::OnProfilePrepared(Profile* profile) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698