Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(482)

Unified Diff: components/password_manager/core/browser/test_password_store.h

Issue 616283002: Revert "Replace OVERRIDE with its C++11 counterpart in components/password_manager/" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698