Index: chrome/browser/password_manager/native_backend_gnome_x.h |
diff --git a/chrome/browser/password_manager/native_backend_gnome_x.h b/chrome/browser/password_manager/native_backend_gnome_x.h |
index 233eb84854d71f4574d1a530d98a2d0c4473228d..f4218314e5351b997aac3fdb58d6c506dbd0788d 100644 |
--- a/chrome/browser/password_manager/native_backend_gnome_x.h |
+++ b/chrome/browser/password_manager/native_backend_gnome_x.h |
@@ -17,11 +17,9 @@ |
class PrefService; |
-namespace webkit { |
-namespace forms { |
+namespace content { |
struct PasswordForm; |
} |
-} |
// Many of the gnome_keyring_* functions use variable arguments, which makes |
// them difficult if not impossible to truly wrap in C. Therefore, we use |
@@ -75,12 +73,12 @@ class NativeBackendGnome : public PasswordStoreX::NativeBackend, |
virtual bool Init() OVERRIDE; |
// Implements NativeBackend interface. |
- virtual bool AddLogin(const webkit::forms::PasswordForm& form) OVERRIDE; |
- virtual bool UpdateLogin(const webkit::forms::PasswordForm& form) OVERRIDE; |
- virtual bool RemoveLogin(const webkit::forms::PasswordForm& form) OVERRIDE; |
+ virtual bool AddLogin(const content::PasswordForm& form) OVERRIDE; |
+ virtual bool UpdateLogin(const content::PasswordForm& form) OVERRIDE; |
+ virtual bool RemoveLogin(const content::PasswordForm& form) OVERRIDE; |
virtual bool RemoveLoginsCreatedBetween( |
const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE; |
- virtual bool GetLogins(const webkit::forms::PasswordForm& form, |
+ virtual bool GetLogins(const content::PasswordForm& form, |
PasswordFormList* forms) OVERRIDE; |
virtual bool GetLoginsCreatedBetween(const base::Time& get_begin, |
const base::Time& get_end, |
@@ -90,7 +88,7 @@ class NativeBackendGnome : public PasswordStoreX::NativeBackend, |
private: |
// Adds a login form without checking for one to replace first. |
- bool RawAddLogin(const webkit::forms::PasswordForm& form); |
+ bool RawAddLogin(const content::PasswordForm& form); |
// Reads PasswordForms from the keyring with the given autofillability state. |
bool GetLoginsList(PasswordFormList* forms, bool autofillable); |