Index: components/autofill/content/renderer/password_generation_manager.h |
diff --git a/components/autofill/content/renderer/password_generation_manager.h b/components/autofill/content/renderer/password_generation_manager.h |
index a8cbe9235c7be0dba5e2a4822cee71b71a0e196a..82ce48932d8618db5befdb93b2f8d7bcb3e7433c 100644 |
--- a/components/autofill/content/renderer/password_generation_manager.h |
+++ b/components/autofill/content/renderer/password_generation_manager.h |
@@ -21,14 +21,9 @@ class WebDocument; |
} |
namespace autofill { |
-struct FormData; |
-} |
-namespace content { |
+struct FormData; |
struct PasswordForm; |
-} |
- |
-namespace autofill { |
// This class is responsible for controlling communication for password |
// generation between the browser (which shows the popup and generates |
@@ -56,7 +51,7 @@ class PasswordGenerationManager : public content::RenderViewObserver, |
virtual void openPasswordGenerator(WebKit::WebInputElement& element) OVERRIDE; |
// Message handlers. |
- void OnFormNotBlacklisted(const content::PasswordForm& form); |
+ void OnFormNotBlacklisted(const PasswordForm& form); |
void OnPasswordAccepted(const base::string16& password); |
void OnPasswordGenerationEnabled(bool enabled); |
void OnAccountCreationFormsDetected( |
@@ -72,7 +67,7 @@ class PasswordGenerationManager : public content::RenderViewObserver, |
bool enabled_; |
// Stores the origin of the account creation form we detected. |
- scoped_ptr<content::PasswordForm> possible_account_creation_form_; |
+ scoped_ptr<PasswordForm> possible_account_creation_form_; |
// Stores the origins of the password forms confirmed not to be blacklisted |
// by the browser. A form can be blacklisted if a user chooses "never save |