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

Unified Diff: components/autofill/core/common/password_form_fill_data.cc

Issue 23742004: Move PasswordForm from //content to //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_password_form_conversion_utils
Patch Set: Rebase Created 7 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/autofill/core/common/password_form_fill_data.cc
diff --git a/components/autofill/core/common/password_form_fill_data.cc b/components/autofill/core/common/password_form_fill_data.cc
index 80b26989cce39669140950a546804b64cff963ad..7dbc97d0ab62b42dc7b158bcea47b663d7fcd149 100644
--- a/components/autofill/core/common/password_form_fill_data.cc
+++ b/components/autofill/core/common/password_form_fill_data.cc
@@ -30,9 +30,9 @@ PasswordFormFillData::~PasswordFormFillData() {
}
void InitPasswordFormFillData(
- const content::PasswordForm& form_on_page,
- const content::PasswordFormMap& matches,
- const content::PasswordForm* const preferred_match,
+ const PasswordForm& form_on_page,
+ const PasswordFormMap& matches,
+ const PasswordForm* const preferred_match,
bool wait_for_username_before_autofill,
bool enable_other_possible_usernames,
PasswordFormFillData* result) {
@@ -57,7 +57,7 @@ void InitPasswordFormFillData(
result->preferred_realm = preferred_match->original_signon_realm;
// Copy additional username/value pairs.
- content::PasswordFormMap::const_iterator iter;
+ PasswordFormMap::const_iterator iter;
for (iter = matches.begin(); iter != matches.end(); iter++) {
if (iter->second != preferred_match) {
PasswordAndRealm value;

Powered by Google App Engine
This is Rietveld 408576698