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

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

Issue 862103002: Only store leading 13 bits of password hash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make LocalAuth a class so methods can be private and exposed only to tests. Created 5 years, 11 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
« no previous file with comments | « no previous file | chrome/browser/signin/local_auth.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/signin/chrome_signin_client.cc
diff --git a/chrome/browser/signin/chrome_signin_client.cc b/chrome/browser/signin/chrome_signin_client.cc
index ba6ab6196707b6d1a4a215527dd36095fc5dbfbc..f90afc45e8a9db6e4eef26dbf749926f324862fd 100644
--- a/chrome/browser/signin/chrome_signin_client.cc
+++ b/chrome/browser/signin/chrome_signin_client.cc
@@ -234,7 +234,7 @@ void ChromeSigninClient::PostSignedIn(const std::string& account_id,
#if !defined(OS_ANDROID) && !defined(OS_IOS) && !defined(OS_CHROMEOS)
// Don't store password hash except when lock is available for the user.
if (!password.empty() && profiles::IsLockAvailable(profile_))
- chrome::SetLocalAuthCredentials(profile_, password);
+ LocalAuth::SetLocalAuthCredentials(profile_, password);
#endif
}
« no previous file with comments | « no previous file | chrome/browser/signin/local_auth.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698