Upload upstream chromium 76.0.3809.146
[platform/framework/web/chromium-efl.git] / apps / app_restore_service_factory.cc
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.
4
5 #include "apps/app_restore_service_factory.h"
6
7 #include "apps/app_lifetime_monitor_factory.h"
8 #include "apps/app_restore_service.h"
9 #include "components/keyed_service/content/browser_context_dependency_manager.h"
10 #include "content/public/browser/browser_context.h"
11
12 namespace apps {
13
14 // static
15 AppRestoreService* AppRestoreServiceFactory::GetForBrowserContext(
16     content::BrowserContext* context) {
17   return static_cast<AppRestoreService*>(
18       GetInstance()->GetServiceForBrowserContext(context, true));
19 }
20
21 AppRestoreServiceFactory* AppRestoreServiceFactory::GetInstance() {
22   return base::Singleton<AppRestoreServiceFactory>::get();
23 }
24
25 AppRestoreServiceFactory::AppRestoreServiceFactory()
26     : BrowserContextKeyedServiceFactory(
27         "AppRestoreService",
28         BrowserContextDependencyManager::GetInstance()) {
29   DependsOn(AppLifetimeMonitorFactory::GetInstance());
30 }
31
32 AppRestoreServiceFactory::~AppRestoreServiceFactory() = default;
33
34 KeyedService* AppRestoreServiceFactory::BuildServiceInstanceFor(
35     content::BrowserContext* context) const {
36   return new AppRestoreService(context);
37 }
38
39 bool AppRestoreServiceFactory::ServiceIsCreatedWithBrowserContext() const {
40   return true;
41 }
42
43 }  // namespace apps