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

Unified Diff: components/password_manager/core/browser/password_store.h

Issue 824513003: Standardize usage of virtual/override/final specifiers in components/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years 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.h
diff --git a/components/password_manager/core/browser/password_store.h b/components/password_manager/core/browser/password_store.h
index 85151e5b11673f1ec33ddeb3970c862d38c9c368..b678368cbaa3b742ae3af142ca3a8bdb859b4872 100644
--- a/components/password_manager/core/browser/password_store.h
+++ b/components/password_manager/core/browser/password_store.h
@@ -206,11 +206,11 @@ class PasswordStore : protected PasswordStoreSync,
// Bring PasswordStoreSync methods to the scope of PasswordStore. Otherwise,
// base::Bind can't be used with them because it fails to cast PasswordStore
// to PasswordStoreSync.
- virtual PasswordStoreChangeList AddLoginImpl(
+ PasswordStoreChangeList AddLoginImpl(
const autofill::PasswordForm& form) override = 0;
- virtual PasswordStoreChangeList UpdateLoginImpl(
+ PasswordStoreChangeList UpdateLoginImpl(
const autofill::PasswordForm& form) override = 0;
- virtual PasswordStoreChangeList RemoveLoginImpl(
+ PasswordStoreChangeList RemoveLoginImpl(
const autofill::PasswordForm& form) override = 0;
// Synchronous implementation to remove the given logins.

Powered by Google App Engine
This is Rietveld 408576698