1// Copyright 2014 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.
4
5#ifndef CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_FACTORY_H_
6#define CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_FACTORY_H_
7
8#include "base/macros.h"
9#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
10
11namespace content {
12class BrowserContext;
13}
14
15template <typename T> struct DefaultSingletonTraits;
16class EasyUnlockService;
17class Profile;
18
19// Singleton factory that builds and owns all EasyUnlockService.
20class EasyUnlockServiceFactory : public BrowserContextKeyedServiceFactory {
21 public:
22  static EasyUnlockServiceFactory* GetInstance();
23
24  static EasyUnlockService* GetForProfile(Profile* profile);
25
26 private:
27  friend struct DefaultSingletonTraits<EasyUnlockServiceFactory>;
28
29  EasyUnlockServiceFactory();
30  virtual ~EasyUnlockServiceFactory();
31
32  // BrowserContextKeyedServiceFactory:
33  virtual KeyedService* BuildServiceInstanceFor(
34      content::BrowserContext* context) const OVERRIDE;
35  virtual content::BrowserContext* GetBrowserContextToUse(
36      content::BrowserContext* context) const OVERRIDE;
37  virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE;
38  virtual bool ServiceIsNULLWhileTesting() const OVERRIDE;
39
40  DISALLOW_COPY_AND_ASSIGN(EasyUnlockServiceFactory);
41};
42
43#endif  // CHROME_BROWSER_SIGNIN_EASY_UNLOCK_SERVICE_FACTORY_H_
44