| 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 4e7f689156b24a52b7e9937142b74394116a0d19..8c28b34403aab09b716a15db3c6c835b2868570a 100644
|
| --- a/chrome/browser/password_manager/native_backend_kwallet_x.h
|
| +++ b/chrome/browser/password_manager/native_backend_kwallet_x.h
|
| @@ -46,17 +46,16 @@ class NativeBackendKWallet : public PasswordStoreX::NativeBackend {
|
| const autofill::PasswordForm& form,
|
| password_manager::PasswordStoreChangeList* changes) OVERRIDE;
|
| virtual bool RemoveLogin(const autofill::PasswordForm& form) OVERRIDE;
|
| - virtual bool RemoveLoginsCreatedBetween(base::Time delete_begin,
|
| - base::Time delete_end) OVERRIDE;
|
| + virtual bool RemoveLoginsCreatedBetween(
|
| + base::Time delete_begin,
|
| + base::Time delete_end,
|
| + password_manager::PasswordStoreChangeList* changes) OVERRIDE;
|
| virtual bool RemoveLoginsSyncedBetween(
|
| base::Time delete_begin,
|
| base::Time delete_end,
|
| password_manager::PasswordStoreChangeList* changes) OVERRIDE;
|
| virtual bool GetLogins(const autofill::PasswordForm& form,
|
| PasswordFormList* forms) OVERRIDE;
|
| - virtual bool GetLoginsCreatedBetween(base::Time get_begin,
|
| - base::Time get_end,
|
| - PasswordFormList* forms) OVERRIDE;
|
| virtual bool GetAutofillableLogins(PasswordFormList* forms) OVERRIDE;
|
| virtual bool GetBlacklistLogins(PasswordFormList* forms) OVERRIDE;
|
|
|
| @@ -101,13 +100,6 @@ class NativeBackendKWallet : public PasswordStoreX::NativeBackend {
|
| bool autofillable,
|
| int wallet_handle);
|
|
|
| - // Reads PasswordForms from the wallet created/synced in the given time range.
|
| - bool GetLoginsList(PasswordFormList* forms,
|
| - const base::Time& begin,
|
| - const base::Time& end,
|
| - int wallet_handle,
|
| - TimestampToCompare date_to_compare);
|
| -
|
| // Helper for some of the above GetLoginsList() methods.
|
| bool GetAllLogins(PasswordFormList* forms, int wallet_handle);
|
|
|
|
|