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

Unified Diff: chrome/browser/chromeos/login/parallel_authenticator.cc

Issue 3583013: [cros] Add blocking UI on offline: OK, online auth: fail case. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: check whether screen is already locked/unlocked Created 10 years, 1 month 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/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);

Powered by Google App Engine
This is Rietveld 408576698