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

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

Issue 152683002: Passwords: Remove references to BrowserThread from PasswordStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 10 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_default.h
diff --git a/chrome/browser/password_manager/password_store_default.h b/chrome/browser/password_manager/password_store_default.h
index 16eac832a4d5b8d296ded094ab1e0283fd22df93..dfee6826176a44a9c450a3b201a9d45834b9ebe0 100644
--- a/chrome/browser/password_manager/password_store_default.h
+++ b/chrome/browser/password_manager/password_store_default.h
@@ -18,15 +18,18 @@ class Profile;
class PasswordStoreDefault : public PasswordStore {
public:
// Takes ownership of |login_db|.
- PasswordStoreDefault(LoginDatabase* login_db,
- Profile* profile);
-
- protected:
- virtual ~PasswordStoreDefault();
+ PasswordStoreDefault(
+ scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner,
+ scoped_refptr<base::SingleThreadTaskRunner> db_thread_runner,
+ LoginDatabase* login_db,
+ Profile* profile);
// Implements RefCountedBrowserContextKeyedService.
virtual void ShutdownOnUIThread() OVERRIDE;
+ protected:
+ virtual ~PasswordStoreDefault();
+
// Implements PasswordStore interface.
virtual void ReportMetricsImpl() OVERRIDE;
virtual void AddLoginImpl(const autofill::PasswordForm& form) OVERRIDE;
« no previous file with comments | « chrome/browser/password_manager/password_store.cc ('k') | chrome/browser/password_manager/password_store_default.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698