Chromium Code Reviews| Index: components/autofill/content/renderer/password_generation_manager.cc |
| diff --git a/components/autofill/content/renderer/password_generation_manager.cc b/components/autofill/content/renderer/password_generation_manager.cc |
| index bdca3e45cec07fde3e65d0eb1984b6b60684ce08..cabe3e5a4545e4c6f040fff82792eec000070648 100644 |
| --- a/components/autofill/content/renderer/password_generation_manager.cc |
| +++ b/components/autofill/content/renderer/password_generation_manager.cc |
| @@ -108,7 +108,7 @@ void PasswordGenerationManager::DidFinishLoad(WebKit::WebFrame* frame) { |
| // If we can't get a valid PasswordForm, we skip this form because the |
| // the password won't get saved even if we generate it. |
| - scoped_ptr<content::PasswordForm> password_form( |
| + scoped_ptr<autofill::PasswordForm> password_form( |
|
Ilya Sherman
2013/09/05 22:53:35
nit: No need for namespace.
blundell
2013/09/06 08:36:25
Done.
|
| CreatePasswordForm(forms[i])); |
| if (!password_form.get()) { |
| DVLOG(2) << "Skipping form as it would not be saved"; |
| @@ -154,7 +154,7 @@ void PasswordGenerationManager::openPasswordGenerator( |
| WebKit::WebInputElement& element) { |
| WebKit::WebElement button(element.passwordGeneratorButtonElement()); |
| gfx::Rect rect(button.boundsInViewportSpace()); |
| - scoped_ptr<content::PasswordForm> password_form( |
| + scoped_ptr<autofill::PasswordForm> password_form( |
| CreatePasswordForm(element.form())); |
| // We should not have shown the icon we can't create a valid PasswordForm. |
| DCHECK(password_form.get()); |
| @@ -182,7 +182,7 @@ bool PasswordGenerationManager::OnMessageReceived(const IPC::Message& message) { |
| } |
| void PasswordGenerationManager::OnFormNotBlacklisted( |
| - const content::PasswordForm& form) { |
| + const autofill::PasswordForm& form) { |
| not_blacklisted_password_form_origins_.push_back(form.origin); |
| MaybeShowIcon(); |
| } |