Home | History | Annotate | Download | only in apps
      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_APPS_SHORTCUT_MANAGER_FACTORY_H_
      6 #define CHROME_BROWSER_APPS_SHORTCUT_MANAGER_FACTORY_H_
      7 
      8 #include "components/browser_context_keyed_service/browser_context_keyed_service_factory.h"
      9 
     10 template<typename Type> struct DefaultSingletonTraits;
     11 
     12 class Profile;
     13 
     14 class AppShortcutManager;
     15 
     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 {
     21  public:
     22   static AppShortcutManager* GetForProfile(Profile* profile);
     23 
     24   static AppShortcutManagerFactory* GetInstance();
     25 
     26  private:
     27   friend struct DefaultSingletonTraits<AppShortcutManagerFactory>;
     28 
     29   AppShortcutManagerFactory();
     30   virtual ~AppShortcutManagerFactory();
     31 
     32   // BrowserContextKeyedServiceFactory:
     33   virtual BrowserContextKeyedService* BuildServiceInstanceFor(
     34       content::BrowserContext* profile) const OVERRIDE;
     35   virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE;
     36 };
     37 
     38 #endif  // CHROME_BROWSER_APPS_SHORTCUT_MANAGER_FACTORY_H_
     39