| 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(). | |
| 16 SimplePasswordStoreMac( | 14 SimplePasswordStoreMac( |
| 17 scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner, | 15 scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner, |
| 18 scoped_refptr<base::SingleThreadTaskRunner> background_thread_runner, | 16 scoped_refptr<base::SingleThreadTaskRunner> background_thread_runner, |
| 19 scoped_ptr<password_manager::LoginDatabase> login_db); | 17 scoped_ptr<password_manager::LoginDatabase> login_db); |
| 20 | 18 |
| 21 // Sets the background thread and LoginDatabase. |login_db| should be already | 19 // Just hides the parent method. All the initialization is to be done by |
| 22 // inited. The method isn't necessary to call if the constructor already got | 20 // PasswordStoreProxyMac that is an owner of the class. |
| 23 // the correct parameters. | 21 bool Init(const syncer::SyncableService::StartSyncFlare& flare) override; |
| 24 void InitWithTaskRunner( | 22 |
| 25 scoped_refptr<base::SingleThreadTaskRunner> background_task_runner, | 23 // Clean |background_thread_runner_|. |
| 26 scoped_ptr<password_manager::LoginDatabase> login_db); | 24 void Shutdown() override; |
| 27 | 25 |
| 28 using PasswordStoreDefault::GetBackgroundTaskRunner; | 26 using PasswordStoreDefault::GetBackgroundTaskRunner; |
| 29 | 27 |
| 30 protected: | 28 protected: |
| 31 ~SimplePasswordStoreMac() override; | 29 ~SimplePasswordStoreMac() override; |
| 32 | 30 |
| 33 private: | 31 private: |
| 34 bool Init(const syncer::SyncableService::StartSyncFlare& flare) override; | |
| 35 | |
| 36 DISALLOW_COPY_AND_ASSIGN(SimplePasswordStoreMac); | 32 DISALLOW_COPY_AND_ASSIGN(SimplePasswordStoreMac); |
| 37 }; | 33 }; |
| 38 | 34 |
| 39 #endif // CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_ | 35 #endif // CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_ |
| OLD | NEW |