Chromium Code Reviews| 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; |
|
Chris Masone
2010/12/01 18:12:21
nit: I might say "Resolved state to: " or somethin
Nikita (slow)
2010/12/02 10:39:52
Done.
|
| + switch (state) { |
| case CONTINUE: |
| case POSSIBLE_PW_CHANGE: |
| case NO_MOUNT: |