Index: chrome/browser/chromeos/login/parallel_authenticator.cc |
diff --git a/chrome/browser/chromeos/login/parallel_authenticator.cc b/chrome/browser/chromeos/login/parallel_authenticator.cc |
index 3a91bbc0ef73dc05592f64255d373de09686e5a5..c4b2f5df16da31616fa56fe0d9f61eb31d41e328 100644 |
--- a/chrome/browser/chromeos/login/parallel_authenticator.cc |
+++ b/chrome/browser/chromeos/login/parallel_authenticator.cc |
@@ -273,7 +273,9 @@ void ParallelAuthenticator::Resolve() { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
bool request_pending = false; |
bool create = false; |
- switch (ResolveState()) { |
+ ParallelAuthenticator::AuthState state = ResolveState(); |
+ VLOG(1) << "Resolving state: " << state; |
+ switch (state) { |
case CONTINUE: |
case POSSIBLE_PW_CHANGE: |
case NO_MOUNT: |
@@ -355,7 +357,7 @@ void ParallelAuthenticator::Resolve() { |
break; |
case HAVE_NEW_PW: |
key_migrator_ = |
- CryptohomeOp::CreateMigrateAttempt(reauth_state_.get(), |
+ CryptohomeOp::CreateMigrateAttempt(current_state_.get(), |
this, |
false, |
reauth_state_->ascii_hash); |