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

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

Issue 666443002: Additional logging for crash mentioned in crbug.com/422918 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Fix merge Created 6 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/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 54cf518e3bfbf3618853f5c4ca5a00b602669e1f..d1cc7a80fd4bfbe391cc8e0b0cb6bea2ee5afd41 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.cc
+++ b/chrome/browser/chromeos/login/existing_user_controller.cc
@@ -446,8 +446,11 @@ void ExistingUserController::Login(const UserContext& user_context,
void ExistingUserController::PerformLogin(
const UserContext& user_context,
LoginPerformer::AuthorizationMode auth_mode) {
- ChromeUserManager::Get()->GetUserFlow(user_context.GetUserID())->set_host(
- host_);
+ // TODO(antrim): remove this output once crash reason is found.
+ LOG(ERROR) << "Setting flow from PerformLogin";
+ ChromeUserManager::Get()
+ ->GetUserFlow(user_context.GetUserID())
+ ->SetHost(host_);
BootTimesLoader::Get()->RecordLoginAttempted();

Powered by Google App Engine
This is Rietveld 408576698