Enable Enterprise enrollment on desktop builds.
[chromium-blink-merge.git] / chrome / browser / apps / shortcut_manager_factory.cc
blob8a8cb4e4366eb1eaa66f288597064da4bc6eaaf0
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"
11 // static
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(
24 "AppShortcutManager",
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 {
37 return true;
40 bool AppShortcutManagerFactory::ServiceIsNULLWhileTesting() const {
41 return true;