Implement PasswordStoreProxyMac and SimplePasswordStoreMac.
[chromium-blink-merge.git] / chrome / browser / password_manager / simple_password_store_mac.h
blob3e046b9ea4369df836d266eab9814fbb48071cec
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_
8 #include "components/password_manager/core/browser/password_store_default.h"
10 // The same as PasswordStoreDefault but running on the dedicated thread. The
11 // owner is responsible for the thread lifetime.
12 class SimplePasswordStoreMac : public password_manager::PasswordStoreDefault {
13 public:
14 SimplePasswordStoreMac(
15 scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner,
16 scoped_refptr<base::SingleThreadTaskRunner> background_thread_runner,
17 scoped_ptr<password_manager::LoginDatabase> login_db);
19 // Just hides the parent method. All the initialization is to be done by
20 // PasswordStoreProxyMac that is an owner of the class.
21 bool Init(const syncer::SyncableService::StartSyncFlare& flare) override;
23 // Clean |background_thread_runner_|.
24 void Shutdown() override;
26 using PasswordStoreDefault::GetBackgroundTaskRunner;
28 protected:
29 ~SimplePasswordStoreMac() override;
31 private:
32 DISALLOW_COPY_AND_ASSIGN(SimplePasswordStoreMac);
35 #endif // CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_