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

Unified Diff: chrome/browser/password_manager/native_backend_libsecret.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: bot fix 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: chrome/browser/password_manager/native_backend_libsecret.cc
diff --git a/chrome/browser/password_manager/native_backend_libsecret.cc b/chrome/browser/password_manager/native_backend_libsecret.cc
index fdd95a3ad4be3a8a5ebdb117df11628e8b83bce8..a0d81ef03c2df90b2954871c90e512ebf123fff7 100644
--- a/chrome/browser/password_manager/native_backend_libsecret.cc
+++ b/chrome/browser/password_manager/native_backend_libsecret.cc
@@ -614,9 +614,7 @@ ScopedVector<autofill::PasswordForm> NativeBackendLibsecret::ConvertFormList(
continue;
}
psl_domain_match_metric = password_manager::PSL_DOMAIN_MATCH_FOUND;
- form->original_signon_realm = form->signon_realm;
- form->signon_realm = lookup_form->signon_realm;
- form->origin = lookup_form->origin;
+ form->is_public_suffix_match = true;
}
SecretValue* secretValue = secret_item_get_secret(secretItem);
if (secretValue) {

Powered by Google App Engine
This is Rietveld 408576698