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.
5 #ifndef CHROME_BROWSER_APPS_SHORTCUT_MANAGER_FACTORY_H_
6 #define CHROME_BROWSER_APPS_SHORTCUT_MANAGER_FACTORY_H_
8 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
10 template<typename Type
> struct DefaultSingletonTraits
;
14 class AppShortcutManager
;
16 // Singleton that owns all AppShortcutManagers and associates them with
17 // Profiles. Listens for the Profile's destruction notification and cleans up
18 // the associated AppShortcutManager.
19 // AppShortcutManagers should not exist in incognito profiles.
20 class AppShortcutManagerFactory
: public BrowserContextKeyedServiceFactory
{
22 static AppShortcutManager
* GetForProfile(Profile
* profile
);
24 static AppShortcutManagerFactory
* GetInstance();
27 friend struct DefaultSingletonTraits
<AppShortcutManagerFactory
>;
29 AppShortcutManagerFactory();
30 ~AppShortcutManagerFactory() override
;
32 // BrowserContextKeyedServiceFactory:
33 KeyedService
* BuildServiceInstanceFor(
34 content::BrowserContext
* profile
) const override
;
35 bool ServiceIsCreatedWithBrowserContext() const override
;
36 bool ServiceIsNULLWhileTesting() const override
;
39 #endif // CHROME_BROWSER_APPS_SHORTCUT_MANAGER_FACTORY_H_