| 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);
|
|
|