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

Unified Diff: components/password_manager/core/browser/password_store_default.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/password_store_default.h
diff --git a/components/password_manager/core/browser/password_store_default.h b/components/password_manager/core/browser/password_store_default.h
index f60183f0fac8e2ebc3b085ddc62ba015335a60ea..6de86fa9d860d0f4cd8d1c0f93145bd37dcb01f2 100644
--- a/components/password_manager/core/browser/password_store_default.h
+++ b/components/password_manager/core/browser/password_store_default.h
@@ -27,29 +27,29 @@ class PasswordStoreDefault : public PasswordStore {
virtual ~PasswordStoreDefault();
// Implements PasswordStore interface.
- virtual void ReportMetricsImpl(const std::string& sync_username) override;
+ virtual void ReportMetricsImpl(const std::string& sync_username) OVERRIDE;
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 PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl(
base::Time delete_begin,
- base::Time delete_end) override;
+ base::Time delete_end) OVERRIDE;
virtual PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl(
base::Time delete_begin,
- base::Time delete_end) override;
+ base::Time delete_end) OVERRIDE;
virtual void GetLoginsImpl(
const autofill::PasswordForm& form,
AuthorizationPromptPolicy prompt_policy,
- const ConsumerCallbackRunner& callback_runner) override;
- virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) override;
- virtual void GetBlacklistLoginsImpl(GetLoginsRequest* request) override;
+ const ConsumerCallbackRunner& callback_runner) OVERRIDE;
+ virtual void GetAutofillableLoginsImpl(GetLoginsRequest* request) OVERRIDE;
+ virtual void GetBlacklistLoginsImpl(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;
protected:
inline bool DeleteAndRecreateDatabaseFile() {

Powered by Google App Engine
This is Rietveld 408576698