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

Unified Diff: chrome/browser/ui/webui/signin/inline_login_handler_impl.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
Index: chrome/browser/ui/webui/signin/inline_login_handler_impl.cc
diff --git a/chrome/browser/ui/webui/signin/inline_login_handler_impl.cc b/chrome/browser/ui/webui/signin/inline_login_handler_impl.cc
index 308460c7b8e85bf147ac5d46d7157e6852a50833..d9ed6882a2324458d01520760ef12797b0cd1eb0 100644
--- a/chrome/browser/ui/webui/signin/inline_login_handler_impl.cc
+++ b/chrome/browser/ui/webui/signin/inline_login_handler_impl.cc
@@ -140,7 +140,7 @@ void InlineSigninHelper::OnClientOAuthSuccess(const ClientOAuthResult& result) {
switches::IsNewProfileManagement() &&
!password_.empty() &&
profiles::IsLockAvailable(profile_)) {
- chrome::SetLocalAuthCredentials(profile_, password_);
+ LocalAuth::SetLocalAuthCredentials(profile_, password_);
}
if (source == signin_metrics::SOURCE_AVATAR_BUBBLE_ADD_ACCOUNT ||

Powered by Google App Engine
This is Rietveld 408576698