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

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

Issue 666133002: Standardize usage of virtual/override/final in components/ (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: 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 9afb529ecdce33d60370b4dc52244e2ae70dd1e1..d93c66056b066185a791a05b480c694c21c5f00a 100644
--- a/components/password_manager/core/browser/password_store.h
+++ b/components/password_manager/core/browser/password_store.h
@@ -196,7 +196,7 @@ class PasswordStore : protected PasswordStoreSync,
typedef base::Callback<PasswordStoreChangeList(void)> ModificationTask;
- virtual ~PasswordStore();
+ ~PasswordStore() override;
// Get the TaskRunner to use for PasswordStore background tasks.
// By default, a SingleThreadTaskRunner on the DB thread is used, but
@@ -255,8 +255,7 @@ class PasswordStore : protected PasswordStoreSync,
// Called by WrapModificationTask() once the underlying data-modifying
// operation has been performed. Notifies observers that password store data
// may have been changed.
- virtual void NotifyLoginsChanged(
- const PasswordStoreChangeList& changes) override;
+ void NotifyLoginsChanged(const PasswordStoreChangeList& changes) override;
// TaskRunner for tasks that run on the main thread (usually the UI thread).
scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner_;

Powered by Google App Engine
This is Rietveld 408576698