blob: 006a0fc7a3585dd205cc3409a3a8af9882551720 (
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
51
52
53
54
55
56
57
58
59
60
61
|
// 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 "chrome/browser/webdata/web_data_service_factory.h"
#include "base/file_path.h"
#include "chrome/browser/profiles/profile_dependency_manager.h"
#include "chrome/browser/webdata/web_data_service.h"
#include "chrome/common/chrome_constants.h"
WebDataServiceFactory::WebDataServiceFactory()
: RefcountedProfileKeyedServiceFactory(
"WebDataService",
ProfileDependencyManager::GetInstance()) {
// WebDataServiceFactory has no dependecies.
}
WebDataServiceFactory::~WebDataServiceFactory() {}
// static
scoped_refptr<WebDataService> WebDataServiceFactory::GetForProfile(
Profile* profile, Profile::ServiceAccessType access_type) {
DCHECK(access_type != Profile::IMPLICIT_ACCESS || !profile->IsOffTheRecord());
return static_cast<WebDataService*>(
GetInstance()->GetServiceForProfile(profile, true).get());
}
// static
scoped_refptr<WebDataService> WebDataServiceFactory::GetForProfileIfExists(
Profile* profile, Profile::ServiceAccessType access_type) {
DCHECK(access_type != Profile::IMPLICIT_ACCESS || !profile->IsOffTheRecord());
return static_cast<WebDataService*>(
GetInstance()->GetServiceForProfile(profile, false).get());
}
// static
WebDataServiceFactory* WebDataServiceFactory::GetInstance() {
return Singleton<WebDataServiceFactory>::get();
}
bool WebDataServiceFactory::ServiceRedirectedInIncognito() {
return true;
}
scoped_refptr<RefcountedProfileKeyedService>
WebDataServiceFactory::BuildServiceInstanceFor(Profile* profile) const {
DCHECK(profile);
FilePath path = profile->GetPath();
path = path.Append(chrome::kWebDataFilename);
scoped_refptr<WebDataService> wds(new WebDataService());
if (!wds->Init(profile->GetPath()))
NOTREACHED();
return wds.get();
}
bool WebDataServiceFactory::ServiceIsNULLWhileTesting() {
return true;
}
|