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

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

Issue 1192963002: Implement PasswordStoreProxyMac and SimplePasswordStoreMac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed the comments 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
new file mode 100644
index 0000000000000000000000000000000000000000..3e046b9ea4369df836d266eab9814fbb48071cec
--- /dev/null
+++ b/chrome/browser/password_manager/simple_password_store_mac.h
@@ -0,0 +1,35 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_
+#define CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_
+
+#include "components/password_manager/core/browser/password_store_default.h"
+
+// The same as PasswordStoreDefault but running on the dedicated thread. The
+// owner is responsible for the thread lifetime.
+class SimplePasswordStoreMac : public password_manager::PasswordStoreDefault {
+ public:
+ 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;
+
+ // Clean |background_thread_runner_|.
+ void Shutdown() override;
+
+ using PasswordStoreDefault::GetBackgroundTaskRunner;
+
+ protected:
+ ~SimplePasswordStoreMac() override;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SimplePasswordStoreMac);
+};
+
+#endif // CHROME_BROWSER_PASSWORD_MANAGER_SIMPLE_PASSWORD_STORE_MAC_H_

Powered by Google App Engine
This is Rietveld 408576698