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 fdd6144cb3a05639f6cc48649ecc89af1f0601e9..0f369dbd750387a162f52c1c09c21a60ee6f2a5a 100644 |
--- a/components/autofill/core/common/password_form.cc |
+++ b/components/autofill/core/common/password_form.cc |
@@ -36,7 +36,8 @@ void PasswordFormToJSON(const PasswordForm& form, |
target->SetBoolean("new_password_marked_by_site", |
form.new_password_marked_by_site); |
target->SetString("other_possible_usernames", |
- JoinString(form.other_possible_usernames, '|')); |
+ base::JoinString(form.other_possible_usernames, |
+ base::ASCIIToUTF16("|"))); |
target->SetBoolean("blacklisted", form.blacklisted_by_user); |
target->SetBoolean("preferred", form.preferred); |
target->SetBoolean("ssl_valid", form.ssl_valid); |