| 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 ec499fbf1c029ad2da341173ca38b4bb1ec43b8b..4e8054790162fc6f2438dac1accb816b2552d1ac 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:
|
|
|