1// Copyright 2013 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_UI_APP_LIST_APP_LIST_SYNCABLE_SERVICE_FACTORY_H_
6#define CHROME_BROWSER_UI_APP_LIST_APP_LIST_SYNCABLE_SERVICE_FACTORY_H_
7
8#include "base/basictypes.h"
9#include "base/memory/singleton.h"
10#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
11
12class Profile;
13
14namespace app_list {
15
16class AppListSyncableService;
17
18// Singleton that owns all AppListSyncableServices and associates them with
19// Profiles. Listens for the Profile's destruction notification and cleans up
20// the associated AppListSyncableService.
21class AppListSyncableServiceFactory : public BrowserContextKeyedServiceFactory {
22 public:
23  static AppListSyncableService* GetForProfile(Profile* profile);
24
25  static AppListSyncableServiceFactory* GetInstance();
26
27  static KeyedService* BuildInstanceFor(
28      content::BrowserContext* browser_context);
29
30 private:
31  friend struct DefaultSingletonTraits<AppListSyncableServiceFactory>;
32
33  AppListSyncableServiceFactory();
34  virtual ~AppListSyncableServiceFactory();
35
36  // BrowserContextKeyedServiceFactory:
37  virtual KeyedService* BuildServiceInstanceFor(
38      content::BrowserContext* profile) const OVERRIDE;
39  virtual void RegisterProfilePrefs(
40      user_prefs::PrefRegistrySyncable* registry) OVERRIDE;
41  virtual content::BrowserContext* GetBrowserContextToUse(
42      content::BrowserContext* context) const OVERRIDE;
43  virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE;
44  virtual bool ServiceIsNULLWhileTesting() const OVERRIDE;
45
46  DISALLOW_COPY_AND_ASSIGN(AppListSyncableServiceFactory);
47};
48
49}  // namespace app_list
50
51#endif  // CHROME_BROWSER_UI_APP_LIST_APP_LIST_SYNCABLE_SERVICE_FACTORY_H_
52