Revert of xp: copy dbghelp.dll to output dir and have base.isolate use it there ...
[chromium-blink-merge.git] / apps / app_restore_service_factory.cc
blob10dcd257b586b3d6ee9c962d270f2852180573e9
1 // Copyright (c) 2012 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 "apps/app_restore_service_factory.h"
7 #include "apps/app_lifetime_monitor_factory.h"
8 #include "apps/app_restore_service.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "components/keyed_service/content/browser_context_dependency_manager.h"
12 namespace apps {
14 // static
15 AppRestoreService* AppRestoreServiceFactory::GetForProfile(Profile* profile) {
16 return static_cast<AppRestoreService*>(
17 GetInstance()->GetServiceForBrowserContext(profile, true));
20 AppRestoreServiceFactory* AppRestoreServiceFactory::GetInstance() {
21 return Singleton<AppRestoreServiceFactory>::get();
24 AppRestoreServiceFactory::AppRestoreServiceFactory()
25 : BrowserContextKeyedServiceFactory(
26 "AppRestoreService",
27 BrowserContextDependencyManager::GetInstance()) {
28 DependsOn(AppLifetimeMonitorFactory::GetInstance());
31 AppRestoreServiceFactory::~AppRestoreServiceFactory() {
34 KeyedService* AppRestoreServiceFactory::BuildServiceInstanceFor(
35 content::BrowserContext* profile) const {
36 return new AppRestoreService(static_cast<Profile*>(profile));
39 bool AppRestoreServiceFactory::ServiceIsCreatedWithBrowserContext() const {
40 return true;
43 } // namespace apps