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

Unified Diff: components/autofill/core/common/password_form.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: Comments addressed Created 5 years, 4 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/autofill/core/common/password_form.cc
diff --git a/components/autofill/core/common/password_form.cc b/components/autofill/core/common/password_form.cc
index 4160085c023944f5e4ec7fabeb984e292c41fed9..5358b3b2e8954c3be93e7102a59e65dba62778a4 100644
--- a/components/autofill/core/common/password_form.cc
+++ b/components/autofill/core/common/password_form.cc
@@ -21,7 +21,6 @@ void PasswordFormToJSON(const PasswordForm& form,
base::DictionaryValue* target) {
target->SetInteger("scheme", form.scheme);
target->SetString("signon_realm", form.signon_realm);
- target->SetString("signon_realm", form.signon_realm);
target->SetString("original_signon_realm", form.original_signon_realm);
target->SetString("origin", form.origin.possibly_invalid_spec());
target->SetString("action", form.action.possibly_invalid_spec());

Powered by Google App Engine
This is Rietveld 408576698