summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/signin/account_investigator_factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/signin/account_investigator_factory.h')
-rw-r--r--chromium/chrome/browser/signin/account_investigator_factory.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/chromium/chrome/browser/signin/account_investigator_factory.h b/chromium/chrome/browser/signin/account_investigator_factory.h
new file mode 100644
index 00000000000..6f1d56caec5
--- /dev/null
+++ b/chromium/chrome/browser/signin/account_investigator_factory.h
@@ -0,0 +1,44 @@
+// Copyright 2016 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_SIGNIN_ACCOUNT_INVESTIGATOR_FACTORY_H_
+#define CHROME_BROWSER_SIGNIN_ACCOUNT_INVESTIGATOR_FACTORY_H_
+
+#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
+
+class Profile;
+class AccountInvestigator;
+
+namespace base {
+template <typename T>
+struct DefaultSingletonTraits;
+} // namespace base
+
+// Factory for BrowserKeyedService AccountInvestigator.
+class AccountInvestigatorFactory : public BrowserContextKeyedServiceFactory {
+ public:
+ static AccountInvestigator* GetForProfile(Profile* profile);
+
+ static AccountInvestigatorFactory* GetInstance();
+
+ AccountInvestigatorFactory(const AccountInvestigatorFactory&) = delete;
+ AccountInvestigatorFactory& operator=(const AccountInvestigatorFactory&) =
+ delete;
+
+ private:
+ friend struct base::DefaultSingletonTraits<AccountInvestigatorFactory>;
+
+ AccountInvestigatorFactory();
+ ~AccountInvestigatorFactory() override;
+
+ // BrowserContextKeyedServiceFactory:
+ KeyedService* BuildServiceInstanceFor(
+ content::BrowserContext* context) const override;
+ void RegisterProfilePrefs(
+ user_prefs::PrefRegistrySyncable* registry) override;
+ bool ServiceIsCreatedWithBrowserContext() const override;
+ bool ServiceIsNULLWhileTesting() const override;
+};
+
+#endif // CHROME_BROWSER_SIGNIN_ACCOUNT_INVESTIGATOR_FACTORY_H_