| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_ |
| 7 | 7 |
| 8 #include "components/password_manager/core/browser/password_store_default.h" | 8 #include "components/password_manager/core/browser/password_store_default.h" |
| 9 | 9 |
| 10 // The same as PasswordStoreDefault but running on the dedicated thread. The | 10 // The same as PasswordStoreDefault but running on the dedicated thread. The |
| 11 // owner is responsible for the thread lifetime. | 11 // owner is responsible for the thread lifetime. |
| 12 class SimplePasswordStoreMac : public password_manager::PasswordStoreDefault { | 12 class SimplePasswordStoreMac : public password_manager::PasswordStoreDefault { |
| 13 public: | 13 public: |
| 14 // Passes the arguments to PasswordStoreDefault. |background_task_runner| and |
| 15 // |login_db| can be overwritten later in InitWithTaskRunner(). |
| 14 SimplePasswordStoreMac( | 16 SimplePasswordStoreMac( |
| 15 scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner, | 17 scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner, |
| 16 scoped_refptr<base::SingleThreadTaskRunner> background_thread_runner, | 18 scoped_refptr<base::SingleThreadTaskRunner> background_thread_runner, |
| 17 scoped_ptr<password_manager::LoginDatabase> login_db); | 19 scoped_ptr<password_manager::LoginDatabase> login_db); |
| 18 | 20 |
| 19 // Just hides the parent method. All the initialization is to be done by | 21 // Sets the background thread and LoginDatabase. |login_db| should be already |
| 20 // PasswordStoreProxyMac that is an owner of the class. | 22 // inited. The method isn't necessary to call if the constructor already got |
| 21 bool Init(const syncer::SyncableService::StartSyncFlare& flare) override; | 23 // the correct parameters. |
| 22 | 24 void InitWithTaskRunner( |
| 23 // Clean |background_thread_runner_|. | 25 scoped_refptr<base::SingleThreadTaskRunner> background_task_runner, |
| 24 void Shutdown() override; | 26 scoped_ptr<password_manager::LoginDatabase> login_db); |
| 25 | 27 |
| 26 using PasswordStoreDefault::GetBackgroundTaskRunner; | 28 using PasswordStoreDefault::GetBackgroundTaskRunner; |
| 27 | 29 |
| 28 protected: | 30 protected: |
| 29 ~SimplePasswordStoreMac() override; | 31 ~SimplePasswordStoreMac() override; |
| 30 | 32 |
| 31 private: | 33 private: |
| 34 bool Init(const syncer::SyncableService::StartSyncFlare& flare) override; |
| 35 |
| 32 DISALLOW_COPY_AND_ASSIGN(SimplePasswordStoreMac); | 36 DISALLOW_COPY_AND_ASSIGN(SimplePasswordStoreMac); |
| 33 }; | 37 }; |
| 34 | 38 |
| 35 #endif // CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_ | 39 #endif // CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_ |
| OLD | NEW |