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

Unified Diff: chrome/browser/extensions/api/passwords_private/passwords_private_delegate_factory.h

Issue 1142693003: Implement the chrome.passwordsPrivate API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stevenjb comment. 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/extensions/api/passwords_private/passwords_private_delegate_factory.h
diff --git a/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_factory.h b/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..e7139a399151c442cf2693c55076a44d75d9c33b
--- /dev/null
+++ b/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_factory.h
@@ -0,0 +1,44 @@
+// 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_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORDS_PRIVATE_DELEGATE_FACTORY_H_
+#define CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORDS_PRIVATE_DELEGATE_FACTORY_H_
+
+#include "base/memory/singleton.h"
+#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
+
+namespace context {
+class BrowserContext;
+}
+
+namespace extensions {
+class PasswordsPrivateDelegate;
+
+// Factory for creating PasswordPrivateDelegates.
+class PasswordsPrivateDelegateFactory
+ : public BrowserContextKeyedServiceFactory {
+ public:
+ static PasswordsPrivateDelegate* GetForBrowserContext(
+ content::BrowserContext* browser_context);
+
+ static PasswordsPrivateDelegateFactory* GetInstance();
+
+ private:
+ friend struct DefaultSingletonTraits<PasswordsPrivateDelegateFactory>;
+
+ PasswordsPrivateDelegateFactory();
+ ~PasswordsPrivateDelegateFactory() override;
+
+ // BrowserContextKeyedBaseFactory implementation.
+ KeyedService* BuildServiceInstanceFor(
+ content::BrowserContext* profile) const override;
+ bool ServiceIsCreatedWithBrowserContext() const override;
+ bool ServiceIsNULLWhileTesting() const override;
+
+ DISALLOW_COPY_AND_ASSIGN(PasswordsPrivateDelegateFactory);
+};
+
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORDS_PRIVATE_DELEGATE_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698