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

Unified Diff: chrome/browser/password_manager/native_backend_kwallet_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/native_backend_kwallet_x.h
diff --git a/chrome/browser/password_manager/native_backend_kwallet_x.h b/chrome/browser/password_manager/native_backend_kwallet_x.h
index 26e2dfb9c0562642b609617e19b72483898f0986..a80927943f647695246a54a79ca6fdd98feffd5a 100644
--- a/chrome/browser/password_manager/native_backend_kwallet_x.h
+++ b/chrome/browser/password_manager/native_backend_kwallet_x.h
@@ -37,27 +37,27 @@ class NativeBackendKWallet : public PasswordStoreX::NativeBackend {
virtual ~NativeBackendKWallet();
- virtual bool Init() OVERRIDE;
+ virtual bool Init() override;
// Implements NativeBackend interface.
virtual password_manager::PasswordStoreChangeList AddLogin(
- const autofill::PasswordForm& form) OVERRIDE;
+ const autofill::PasswordForm& form) override;
virtual bool UpdateLogin(
const autofill::PasswordForm& form,
- password_manager::PasswordStoreChangeList* changes) OVERRIDE;
- virtual bool RemoveLogin(const autofill::PasswordForm& form) OVERRIDE;
+ password_manager::PasswordStoreChangeList* changes) override;
+ virtual bool RemoveLogin(const autofill::PasswordForm& form) override;
virtual bool RemoveLoginsCreatedBetween(
base::Time delete_begin,
base::Time delete_end,
- password_manager::PasswordStoreChangeList* changes) OVERRIDE;
+ password_manager::PasswordStoreChangeList* changes) override;
virtual bool RemoveLoginsSyncedBetween(
base::Time delete_begin,
base::Time delete_end,
- password_manager::PasswordStoreChangeList* changes) OVERRIDE;
+ password_manager::PasswordStoreChangeList* changes) override;
virtual bool GetLogins(const autofill::PasswordForm& form,
- PasswordFormList* forms) OVERRIDE;
- virtual bool GetAutofillableLogins(PasswordFormList* forms) OVERRIDE;
- virtual bool GetBlacklistLogins(PasswordFormList* forms) OVERRIDE;
+ PasswordFormList* forms) override;
+ virtual bool GetAutofillableLogins(PasswordFormList* forms) override;
+ virtual bool GetBlacklistLogins(PasswordFormList* forms) override;
protected:
// Invalid handle returned by WalletHandle().

Powered by Google App Engine
This is Rietveld 408576698