| Index: components/password_manager/core/browser/test_password_store.h
|
| diff --git a/components/password_manager/core/browser/test_password_store.h b/components/password_manager/core/browser/test_password_store.h
|
| index 7c44b0ba27cc630dcdd580f58d893838f8bd97a4..52b52c43a204c965dc05d9a30dfef3f435fd865b 100644
|
| --- a/components/password_manager/core/browser/test_password_store.h
|
| +++ b/components/password_manager/core/browser/test_password_store.h
|
| @@ -46,33 +46,33 @@ class TestPasswordStore : public PasswordStore {
|
|
|
| // PasswordStore interface
|
| virtual PasswordStoreChangeList AddLoginImpl(
|
| - const autofill::PasswordForm& form) override;
|
| + const autofill::PasswordForm& form) OVERRIDE;
|
| virtual PasswordStoreChangeList UpdateLoginImpl(
|
| - const autofill::PasswordForm& form) override;
|
| + const autofill::PasswordForm& form) OVERRIDE;
|
| virtual PasswordStoreChangeList RemoveLoginImpl(
|
| - const autofill::PasswordForm& form) override;
|
| + const autofill::PasswordForm& form) OVERRIDE;
|
| virtual void GetLoginsImpl(
|
| const autofill::PasswordForm& form,
|
| PasswordStore::AuthorizationPromptPolicy prompt_policy,
|
| - const ConsumerCallbackRunner& runner) override;
|
| - virtual void WrapModificationTask(ModificationTask task) override;
|
| + const ConsumerCallbackRunner& runner) OVERRIDE;
|
| + virtual void WrapModificationTask(ModificationTask task) OVERRIDE;
|
|
|
| // Unused portions of PasswordStore interface
|
| - virtual void ReportMetricsImpl(const std::string& sync_username) override {}
|
| + virtual void ReportMetricsImpl(const std::string& sync_username) OVERRIDE {}
|
| virtual PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl(
|
| base::Time begin,
|
| - base::Time end) override;
|
| + base::Time end) OVERRIDE;
|
| virtual PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl(
|
| base::Time delete_begin,
|
| - base::Time delete_end) override;
|
| + base::Time delete_end) OVERRIDE;
|
| virtual void GetAutofillableLoginsImpl(
|
| - PasswordStore::GetLoginsRequest* request) override {}
|
| + PasswordStore::GetLoginsRequest* request) OVERRIDE {}
|
| virtual void GetBlacklistLoginsImpl(
|
| - PasswordStore::GetLoginsRequest* request) override {}
|
| + PasswordStore::GetLoginsRequest* request) OVERRIDE {}
|
| virtual bool FillAutofillableLogins(
|
| - std::vector<autofill::PasswordForm*>* forms) override;
|
| + std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
|
| virtual bool FillBlacklistLogins(
|
| - std::vector<autofill::PasswordForm*>* forms) override;
|
| + std::vector<autofill::PasswordForm*>* forms) OVERRIDE;
|
|
|
| private:
|
| PasswordMap stored_passwords_;
|
|
|