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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
// 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/search_engines/template_url_service_factory.h"
#include "chrome/browser/google/google_url_tracker_factory.h"
#include "chrome/browser/history/history_service_factory.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/profiles/profile_dependency_manager.h"
#include "chrome/browser/search_engines/template_url_service.h"
#include "chrome/browser/webdata/web_data_service_factory.h"
#include "chrome/common/pref_names.h"
// static
TemplateURLService* TemplateURLServiceFactory::GetForProfile(Profile* profile) {
return static_cast<TemplateURLService*>(
GetInstance()->GetServiceForProfile(profile, true));
}
// static
TemplateURLServiceFactory* TemplateURLServiceFactory::GetInstance() {
return Singleton<TemplateURLServiceFactory>::get();
}
// static
ProfileKeyedService* TemplateURLServiceFactory::BuildInstanceFor(
Profile* profile) {
return new TemplateURLService(profile);
}
TemplateURLServiceFactory::TemplateURLServiceFactory()
: ProfileKeyedServiceFactory("TemplateURLServiceFactory",
ProfileDependencyManager::GetInstance()) {
DependsOn(GoogleURLTrackerFactory::GetInstance());
DependsOn(HistoryServiceFactory::GetInstance());
DependsOn(WebDataServiceFactory::GetInstance());
}
TemplateURLServiceFactory::~TemplateURLServiceFactory() {}
ProfileKeyedService* TemplateURLServiceFactory::BuildServiceInstanceFor(
Profile* profile) const {
return BuildInstanceFor(profile);
}
void TemplateURLServiceFactory::RegisterUserPrefs(PrefService* prefs) {
prefs->RegisterStringPref(prefs::kSyncedDefaultSearchProviderGUID,
std::string(),
PrefService::SYNCABLE_PREF);
prefs->RegisterBooleanPref(prefs::kDefaultSearchProviderEnabled,
true,
PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultSearchProviderName,
std::string(),
PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultSearchProviderID,
std::string(),
PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultSearchProviderPrepopulateID,
std::string(),
PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultSearchProviderSuggestURL,
std::string(),
PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultSearchProviderSearchURL,
std::string(),
PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultSearchProviderInstantURL,
std::string(),
PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultSearchProviderKeyword,
std::string(),
PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultSearchProviderIconURL,
std::string(),
PrefService::UNSYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kDefaultSearchProviderEncodings,
std::string(),
PrefService::UNSYNCABLE_PREF);
}
bool TemplateURLServiceFactory::ServiceRedirectedInIncognito() const {
return true;
}
bool TemplateURLServiceFactory::ServiceIsNULLWhileTesting() const {
return true;
}
void TemplateURLServiceFactory::ProfileShutdown(Profile* profile) {
// We shutdown AND destroy the TemplateURLService during this pass.
// TemplateURLService schedules a task on the WebDataService from its
// destructor. Delete it first to ensure the task gets scheduled before we
// shut down the database.
ProfileKeyedServiceFactory::ProfileShutdown(profile);
ProfileKeyedServiceFactory::ProfileDestroyed(profile);
}
void TemplateURLServiceFactory::ProfileDestroyed(Profile* profile) {
// Don't double delete.
}
|