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

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

Issue 682613003: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 7990a77f8875e89ea8bb6a51f8eccee6522a1f30..c28ad049ac620efd9ca926a559a5adaac4d9c53d 100644
--- a/chrome/browser/password_manager/password_store_x.h
+++ b/chrome/browser/password_manager/password_store_x.h
@@ -75,30 +75,29 @@ class PasswordStoreX : public password_manager::PasswordStoreDefault {
private:
friend class PasswordStoreXTest;
- virtual ~PasswordStoreX();
+ ~PasswordStoreX() override;
// Implements PasswordStore interface.
- virtual password_manager::PasswordStoreChangeList AddLoginImpl(
+ password_manager::PasswordStoreChangeList AddLoginImpl(
const autofill::PasswordForm& form) override;
- virtual password_manager::PasswordStoreChangeList UpdateLoginImpl(
+ password_manager::PasswordStoreChangeList UpdateLoginImpl(
const autofill::PasswordForm& form) override;
- virtual password_manager::PasswordStoreChangeList RemoveLoginImpl(
+ password_manager::PasswordStoreChangeList RemoveLoginImpl(
const autofill::PasswordForm& form) override;
- virtual password_manager::PasswordStoreChangeList
- RemoveLoginsCreatedBetweenImpl(base::Time delete_begin,
- base::Time delete_end) override;
- virtual password_manager::PasswordStoreChangeList
- RemoveLoginsSyncedBetweenImpl(base::Time delete_begin,
- 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;
- virtual bool FillAutofillableLogins(
+ password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl(
+ base::Time delete_begin,
+ base::Time delete_end) override;
+ password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl(
+ base::Time delete_begin,
+ base::Time delete_end) override;
+ void GetLoginsImpl(const autofill::PasswordForm& form,
+ AuthorizationPromptPolicy prompt_policy,
+ const ConsumerCallbackRunner& callback_runner) override;
+ void GetAutofillableLoginsImpl(GetLoginsRequest* request) override;
+ void GetBlacklistLoginsImpl(GetLoginsRequest* request) override;
+ bool FillAutofillableLogins(
std::vector<autofill::PasswordForm*>* forms) override;
- virtual bool FillBlacklistLogins(
+ bool FillBlacklistLogins(
std::vector<autofill::PasswordForm*>* forms) override;
// Sort logins by origin, like the ORDER BY clause in login_database.cc.

Powered by Google App Engine
This is Rietveld 408576698