| Index: chrome/browser/password_manager/native_backend_kwallet_x.h
|
| diff --git a/chrome/browser/password_manager/native_backend_kwallet_x.h b/chrome/browser/password_manager/native_backend_kwallet_x.h
|
| index 8029e610555a473a73b658bce35c22b344262292..55a9c421a35501d5c2d819fa8a307a97abbf4d32 100644
|
| --- a/chrome/browser/password_manager/native_backend_kwallet_x.h
|
| +++ b/chrome/browser/password_manager/native_backend_kwallet_x.h
|
| @@ -18,7 +18,7 @@ class Pickle;
|
| class PickleIterator;
|
| class PrefService;
|
|
|
| -namespace content {
|
| +namespace autofill {
|
| struct PasswordForm;
|
| }
|
|
|
| @@ -41,12 +41,12 @@ class NativeBackendKWallet : public PasswordStoreX::NativeBackend {
|
| virtual bool Init() OVERRIDE;
|
|
|
| // Implements NativeBackend interface.
|
| - 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 AddLogin(const autofill::PasswordForm& form) OVERRIDE;
|
| + virtual bool UpdateLogin(const autofill::PasswordForm& form) OVERRIDE;
|
| + virtual bool RemoveLogin(const autofill::PasswordForm& form) OVERRIDE;
|
| virtual bool RemoveLoginsCreatedBetween(
|
| const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE;
|
| - virtual bool GetLogins(const content::PasswordForm& form,
|
| + virtual bool GetLogins(const autofill::PasswordForm& form,
|
| PasswordFormList* forms) OVERRIDE;
|
| virtual bool GetLoginsCreatedBetween(const base::Time& get_begin,
|
| const base::Time& get_end,
|
|
|