Index: chrome/browser/ui/webui/signin/user_manager_screen_handler.cc |
diff --git a/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc b/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc |
index 91a5bce179edad88405345fd32f252e11d843bb6..b13580032aa78c83fe2dd44aa30c04761e41964a 100644 |
--- a/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc |
+++ b/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc |
@@ -341,7 +341,7 @@ void UserManagerScreenHandler::HandleAuthenticatedLaunchUser( |
} |
authenticating_profile_index_ = profile_index; |
- if (!chrome::ValidateLocalAuthCredentials(profile_index, password)) { |
+ if (!LocalAuth::ValidateLocalAuthCredentials(profile_index, password)) { |
// Make a second attempt via an on-line authentication call. This handles |
// profiles that are missing sign-in credentials and also cases where the |
// password has been changed externally. |
@@ -453,8 +453,8 @@ void UserManagerScreenHandler::HandleHardlockUserPod( |
void UserManagerScreenHandler::OnClientLoginSuccess( |
const ClientLoginResult& result) { |
- chrome::SetLocalAuthCredentials(authenticating_profile_index_, |
- password_attempt_); |
+ LocalAuth::SetLocalAuthCredentials(authenticating_profile_index_, |
+ password_attempt_); |
ReportAuthenticationResult(true, ProfileMetrics::AUTH_ONLINE); |
} |
@@ -475,8 +475,8 @@ void UserManagerScreenHandler::OnClientLoginFailure( |
// profile was locked. Save the password to streamline future unlocks. |
if (success) { |
DCHECK(!password_attempt_.empty()); |
- chrome::SetLocalAuthCredentials(authenticating_profile_index_, |
- password_attempt_); |
+ LocalAuth::SetLocalAuthCredentials(authenticating_profile_index_, |
+ password_attempt_); |
} |
bool offline = (state == GoogleServiceAuthError::CONNECTION_FAILED || |