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 #include "chrome/browser/apps/shortcut_manager_factory.h"
7 #include "chrome/browser/apps/shortcut_manager.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "components/keyed_service/content/browser_context_dependency_manager.h"
12 AppShortcutManager
* AppShortcutManagerFactory::GetForProfile(Profile
* profile
) {
13 return static_cast<AppShortcutManager
*>(
14 GetInstance()->GetServiceForBrowserContext(profile
,
15 false /* don't create */));
18 AppShortcutManagerFactory
* AppShortcutManagerFactory::GetInstance() {
19 return Singleton
<AppShortcutManagerFactory
>::get();
22 AppShortcutManagerFactory::AppShortcutManagerFactory()
23 : BrowserContextKeyedServiceFactory(
25 BrowserContextDependencyManager::GetInstance()) {
28 AppShortcutManagerFactory::~AppShortcutManagerFactory() {
31 KeyedService
* AppShortcutManagerFactory::BuildServiceInstanceFor(
32 content::BrowserContext
* profile
) const {
33 return new AppShortcutManager(static_cast<Profile
*>(profile
));
36 bool AppShortcutManagerFactory::ServiceIsCreatedWithBrowserContext() const {
40 bool AppShortcutManagerFactory::ServiceIsNULLWhileTesting() const {