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

Unified Diff: components/password_manager/core/browser/password_store.cc

Issue 1314903003: Updating of all entries in PasswordManager of the same credentials on password update (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed strings from progress loader Created 5 years, 3 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: components/password_manager/core/browser/password_store.cc
diff --git a/components/password_manager/core/browser/password_store.cc b/components/password_manager/core/browser/password_store.cc
index 6a1e3110c05ca5d3078e4c948e3a1d84d48be5a0..b019d1639973f48c51a27c754907f5bc01b341d3 100644
--- a/components/password_manager/core/browser/password_store.cc
+++ b/components/password_manager/core/browser/password_store.cc
@@ -383,8 +383,7 @@ void PasswordStore::GetLoginsWithAffiliationsImpl(
android_form.scheme = PasswordForm::SCHEME_HTML;
android_form.signon_realm = realm;
ScopedVector<PasswordForm> more_results(
- AffiliatedMatchHelper::TransformAffiliatedAndroidCredentials(
- form, FillMatchingLogins(android_form, DISALLOW_PROMPT)));
+ FillMatchingLogins(android_form, DISALLOW_PROMPT));
results.insert(results.end(), more_results.begin(), more_results.end());
more_results.weak_clear();
}

Powered by Google App Engine
This is Rietveld 408576698