blob: 22ebe32304784bc7573edf1a3d05a1b938242cda (
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
|
// 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/profiles/profile_dependency_manager.h"
namespace apps {
// static
AppRestoreService* AppRestoreServiceFactory::GetForProfile(Profile* profile) {
return static_cast<AppRestoreService*>(
GetInstance()->GetServiceForProfile(profile, true));
}
// static
void AppRestoreServiceFactory::ResetForProfile(Profile* profile) {
AppRestoreServiceFactory* factory = GetInstance();
factory->ProfileShutdown(profile);
factory->ProfileDestroyed(profile);
}
AppRestoreServiceFactory* AppRestoreServiceFactory::GetInstance() {
return Singleton<AppRestoreServiceFactory>::get();
}
AppRestoreServiceFactory::AppRestoreServiceFactory()
: ProfileKeyedServiceFactory("AppRestoreService",
ProfileDependencyManager::GetInstance()) {
}
AppRestoreServiceFactory::~AppRestoreServiceFactory() {
}
ProfileKeyedService* AppRestoreServiceFactory::BuildServiceInstanceFor(
Profile* profile) const {
return new AppRestoreService(profile);
}
bool AppRestoreServiceFactory::ServiceIsCreatedWithProfile() const {
return true;
}
} // namespace apps
|