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

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

Issue 1213043003: Start the migration of passwords from the Keychain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix the tests Created 5 years, 6 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/simple_password_store_mac.h
diff --git a/chrome/browser/password_manager/simple_password_store_mac.h b/chrome/browser/password_manager/simple_password_store_mac.h
index 3e046b9ea4369df836d266eab9814fbb48071cec..f464bfd8ffadb6f4b2ad157b4794e4c2e2f4029d 100644
--- a/chrome/browser/password_manager/simple_password_store_mac.h
+++ b/chrome/browser/password_manager/simple_password_store_mac.h
@@ -11,14 +11,18 @@
// owner is responsible for the thread lifetime.
class SimplePasswordStoreMac : public password_manager::PasswordStoreDefault {
public:
+ // Passes the arguments to PasswordStoreDefault. |background_task_runner| and
+ // |login_db| can be overwritten later in InitWithTaskRunner().
SimplePasswordStoreMac(
scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner,
scoped_refptr<base::SingleThreadTaskRunner> background_thread_runner,
scoped_ptr<password_manager::LoginDatabase> login_db);
- // Just hides the parent method. All the initialization is to be done by
- // PasswordStoreProxyMac that is an owner of the class.
- bool Init(const syncer::SyncableService::StartSyncFlare& flare) override;
+ // Sets the background thread and LoginDatabase. |login_db| should be already
+ // inited.
+ void InitWithTaskRunner(
+ scoped_refptr<base::SingleThreadTaskRunner> background_task_runner,
+ scoped_ptr<password_manager::LoginDatabase> login_db);
// Clean |background_thread_runner_|.
void Shutdown() override;
@@ -29,6 +33,8 @@ class SimplePasswordStoreMac : public password_manager::PasswordStoreDefault {
~SimplePasswordStoreMac() override;
private:
+ using PasswordStoreDefault::Init;
+
DISALLOW_COPY_AND_ASSIGN(SimplePasswordStoreMac);
};

Powered by Google App Engine
This is Rietveld 408576698