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

Unified Diff: chrome/browser/password_manager/password_store_mac.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_mac.h
diff --git a/chrome/browser/password_manager/password_store_mac.h b/chrome/browser/password_manager/password_store_mac.h
index d507d9b2c6ea8cf3d6994b5eee68ebb5590db49a..0e1be3d4dd25bf56d43a90312e13c129da27c5e4 100644
--- a/chrome/browser/password_manager/password_store_mac.h
+++ b/chrome/browser/password_manager/password_store_mac.h
@@ -39,41 +39,41 @@ class PasswordStoreMac : public password_manager::PasswordStore {
// Initializes |thread_|.
virtual bool Init(
const syncer::SyncableService::StartSyncFlare& flare,
- const std::string& sync_username) OVERRIDE;
+ const std::string& sync_username) override;
// Stops |thread_|.
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
protected:
virtual ~PasswordStoreMac();
virtual scoped_refptr<base::SingleThreadTaskRunner>
- GetBackgroundTaskRunner() OVERRIDE;
+ GetBackgroundTaskRunner() override;
private:
- virtual void ReportMetricsImpl(const std::string& sync_username) OVERRIDE;
+ virtual void ReportMetricsImpl(const std::string& sync_username) override;
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;
// Adds the given form to the Keychain if it's something we want to store
// there (i.e., not a blacklist entry). Returns true if the operation
« no previous file with comments | « chrome/browser/password_manager/password_store_factory.h ('k') | chrome/browser/password_manager/password_store_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698