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

Unified Diff: chrome/browser/password_manager/password_store_x.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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: chrome/browser/password_manager/password_store_x.h
diff --git a/chrome/browser/password_manager/password_store_x.h b/chrome/browser/password_manager/password_store_x.h
index 53b47f934acfa5ed475fd12dd963b361da9cb595..7990a77f8875e89ea8bb6a51f8eccee6522a1f30 100644
--- a/chrome/browser/password_manager/password_store_x.h
+++ b/chrome/browser/password_manager/password_store_x.h
@@ -79,27 +79,27 @@ class PasswordStoreX : public password_manager::PasswordStoreDefault {
// Implements PasswordStore interface.
virtual password_manager::PasswordStoreChangeList AddLoginImpl(
- const autofill::PasswordForm& form) OVERRIDE;
+ const autofill::PasswordForm& form) override;
virtual password_manager::PasswordStoreChangeList UpdateLoginImpl(
- const autofill::PasswordForm& form) OVERRIDE;
+ const autofill::PasswordForm& form) override;
virtual password_manager::PasswordStoreChangeList RemoveLoginImpl(
- const autofill::PasswordForm& form) OVERRIDE;
+ const autofill::PasswordForm& form) override;
virtual password_manager::PasswordStoreChangeList
RemoveLoginsCreatedBetweenImpl(base::Time delete_begin,
- base::Time delete_end) OVERRIDE;
+ base::Time delete_end) override;
virtual password_manager::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;
// Sort logins by origin, like the ORDER BY clause in login_database.cc.
void SortLoginsByOrigin(NativeBackend::PasswordFormList* list);
« no previous file with comments | « chrome/browser/password_manager/password_store_win.cc ('k') | chrome/browser/password_manager/password_store_x_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698