| 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 a80927943f647695246a54a79ca6fdd98feffd5a..725600c67d4a15f61925dd7f57e43b709462771e 100644
|
| --- a/chrome/browser/password_manager/native_backend_kwallet_x.h
|
| +++ b/chrome/browser/password_manager/native_backend_kwallet_x.h
|
| @@ -35,29 +35,28 @@ class NativeBackendKWallet : public PasswordStoreX::NativeBackend {
|
| public:
|
| explicit NativeBackendKWallet(LocalProfileId id);
|
|
|
| - virtual ~NativeBackendKWallet();
|
| + ~NativeBackendKWallet() override;
|
|
|
| - virtual bool Init() override;
|
| + bool Init() override;
|
|
|
| // Implements NativeBackend interface.
|
| - virtual password_manager::PasswordStoreChangeList AddLogin(
|
| + password_manager::PasswordStoreChangeList AddLogin(
|
| const autofill::PasswordForm& form) override;
|
| - virtual bool UpdateLogin(
|
| - const autofill::PasswordForm& form,
|
| - password_manager::PasswordStoreChangeList* changes) override;
|
| - virtual bool RemoveLogin(const autofill::PasswordForm& form) override;
|
| - virtual bool RemoveLoginsCreatedBetween(
|
| + bool UpdateLogin(const autofill::PasswordForm& form,
|
| + password_manager::PasswordStoreChangeList* changes) override;
|
| + bool RemoveLogin(const autofill::PasswordForm& form) override;
|
| + bool RemoveLoginsCreatedBetween(
|
| base::Time delete_begin,
|
| base::Time delete_end,
|
| password_manager::PasswordStoreChangeList* changes) override;
|
| - virtual bool RemoveLoginsSyncedBetween(
|
| + 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 GetAutofillableLogins(PasswordFormList* forms) override;
|
| - virtual bool GetBlacklistLogins(PasswordFormList* forms) override;
|
| + bool GetLogins(const autofill::PasswordForm& form,
|
| + PasswordFormList* forms) override;
|
| + bool GetAutofillableLogins(PasswordFormList* forms) override;
|
| + bool GetBlacklistLogins(PasswordFormList* forms) override;
|
|
|
| protected:
|
| // Invalid handle returned by WalletHandle().
|
|
|