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; |