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

Unified Diff: chrome/browser/chromeos/login/supervised/supervised_user_creation_flow.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/supervised/supervised_user_creation_flow.cc
diff --git a/chrome/browser/chromeos/login/supervised/supervised_user_creation_flow.cc b/chrome/browser/chromeos/login/supervised/supervised_user_creation_flow.cc
index 294eec7536e5381ce744f7c9744abfb013c8e6a1..c116b68c6291f67bb812c1834fa0fa62b44ce25f 100644
--- a/chrome/browser/chromeos/login/supervised/supervised_user_creation_flow.cc
+++ b/chrome/browser/chromeos/login/supervised/supervised_user_creation_flow.cc
@@ -34,7 +34,9 @@ SupervisedUserCreationFlow::SupervisedUserCreationFlow(
session_started_(false),
manager_profile_(NULL) {}
-SupervisedUserCreationFlow::~SupervisedUserCreationFlow() {}
+SupervisedUserCreationFlow::~SupervisedUserCreationFlow() {
+ LOG(ERROR) << "Destroyed " << this;
+}
bool SupervisedUserCreationFlow::CanLockScreen() {
return false;
@@ -95,6 +97,8 @@ bool SupervisedUserCreationFlow::HandlePasswordChangeDetected() {
void SupervisedUserCreationFlow::LaunchExtraSteps(
Profile* profile) {
+ // TODO(antrim): remove this output once crash is found.
+ LOG(ERROR) << "LaunchExtraSteps for " << this << " host is " << host();
logged_in_ = true;
manager_profile_ = profile;
ProfileHelper::Get()->ProfileStartup(profile, true);
« no previous file with comments | « chrome/browser/chromeos/login/existing_user_controller.cc ('k') | chrome/browser/chromeos/login/user_flow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698