summaryrefslogtreecommitdiffstats
path: root/apps/shortcut_manager_factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/shortcut_manager_factory.h')
-rw-r--r--apps/shortcut_manager_factory.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/shortcut_manager_factory.h b/apps/shortcut_manager_factory.h
index 7f928e3..9f8add9 100644
--- a/apps/shortcut_manager_factory.h
+++ b/apps/shortcut_manager_factory.h
@@ -19,7 +19,7 @@ class ShortcutManager;
// Profiles. Listens for the Profile's destruction notification and cleans up
// the associated ShortcutManager.
// ShortcutManagers should not exist in incognito profiles.
-class ShortcutManagerFactory : public ProfileKeyedServiceFactory {
+class ShortcutManagerFactory : public BrowserContextKeyedServiceFactory {
public:
static ShortcutManager* GetForProfile(Profile* profile);
@@ -33,10 +33,10 @@ class ShortcutManagerFactory : public ProfileKeyedServiceFactory {
ShortcutManagerFactory();
virtual ~ShortcutManagerFactory();
- // ProfileKeyedServiceFactory:
- virtual ProfileKeyedService* BuildServiceInstanceFor(
+ // BrowserContextKeyedServiceFactory:
+ virtual BrowserContextKeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const OVERRIDE;
- virtual bool ServiceIsCreatedWithProfile() const OVERRIDE;
+ virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE;
};
} // namespace apps