| 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;
|
| }
|
|
|