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

Unified Diff: chrome/browser/signin/easy_unlock_auth_attempt.cc

Issue 2937553002: Create Mojo Struct for user information used in login/lock screen. (Closed)
Patch Set: rebase Created 3 years, 6 months 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/signin/easy_unlock_auth_attempt.cc
diff --git a/chrome/browser/signin/easy_unlock_auth_attempt.cc b/chrome/browser/signin/easy_unlock_auth_attempt.cc
index 345e1d1871e086c2e70dc00880c5f9fb3089a192..cc12f9a625be0db34e715f3cc92b50d7a0b28837 100644
--- a/chrome/browser/signin/easy_unlock_auth_attempt.cc
+++ b/chrome/browser/signin/easy_unlock_auth_attempt.cc
@@ -108,11 +108,11 @@ bool EasyUnlockAuthAttempt::Start() {
if (!proximity_auth::ScreenlockBridge::Get()->IsLocked())
return false;
- proximity_auth::ScreenlockBridge::LockHandler::AuthType auth_type =
+ proximity_auth::mojom::AuthType auth_type =
proximity_auth::ScreenlockBridge::Get()->lock_handler()->GetAuthType(
account_id_);
- if (auth_type != proximity_auth::ScreenlockBridge::LockHandler::USER_CLICK) {
+ if (auth_type != proximity_auth::mojom::AuthType::USER_CLICK) {
Cancel(account_id_);
return false;
}
« no previous file with comments | « chrome/browser/signin/easy_unlock_app_manager.cc ('k') | chrome/browser/signin/easy_unlock_auth_attempt_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698