blob: b477ce82d1abbe0e83c3e90f86b0284bfa94b94f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "apps/app_restore_service_factory.h"
#include "apps/app_restore_service.h"
#include "chrome/browser/extensions/shell_window_registry.h"
#include "chrome/browser/profiles/profile.h"
#include "components/browser_context_keyed_service/browser_context_dependency_manager.h"
namespace apps {
// static
AppRestoreService* AppRestoreServiceFactory::GetForProfile(Profile* profile) {
return static_cast<AppRestoreService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
void AppRestoreServiceFactory::ResetForProfile(Profile* profile) {
AppRestoreServiceFactory* factory = GetInstance();
factory->BrowserContextShutdown(profile);
factory->BrowserContextDestroyed(profile);
}
AppRestoreServiceFactory* AppRestoreServiceFactory::GetInstance() {
return Singleton<AppRestoreServiceFactory>::get();
}
AppRestoreServiceFactory::AppRestoreServiceFactory()
: BrowserContextKeyedServiceFactory(
"AppRestoreService",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(extensions::ShellWindowRegistry::Factory::GetInstance());
}
AppRestoreServiceFactory::~AppRestoreServiceFactory() {
}
BrowserContextKeyedService* AppRestoreServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return new AppRestoreService(static_cast<Profile*>(profile));
}
bool AppRestoreServiceFactory::ServiceIsCreatedWithBrowserContext() const {
return true;
}
} // namespace apps
|