blob: ba1d669806cdf8c55c6067584dec43bec0a000c1 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// Copyright 2013 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/hotword_service_factory.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search/hotword_service.h"
#include "chrome/common/pref_names.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/user_prefs/pref_registry_syncable.h"
#include "content/public/browser/browser_context.h"
using content::BrowserContext;
// static
HotwordService* HotwordServiceFactory::GetForProfile(BrowserContext* context) {
return static_cast<HotwordService*>(
GetInstance()->GetServiceForBrowserContext(context, true));
}
// static
HotwordServiceFactory* HotwordServiceFactory::GetInstance() {
return Singleton<HotwordServiceFactory>::get();
}
// static
bool HotwordServiceFactory::ShouldShowOptInPopup(BrowserContext* context) {
HotwordService* hotword_service = GetForProfile(context);
return hotword_service && hotword_service->ShouldShowOptInPopup();
}
// static
bool HotwordServiceFactory::IsServiceAvailable(BrowserContext* context) {
HotwordService* hotword_service = GetForProfile(context);
return hotword_service && hotword_service->IsServiceAvailable();
}
// static
bool HotwordServiceFactory::IsHotwordAllowed(BrowserContext* context) {
HotwordService* hotword_service = GetForProfile(context);
return hotword_service && hotword_service->IsHotwordAllowed();
}
// static
bool HotwordServiceFactory::RetryHotwordExtension(Profile* profile) {
HotwordService* hotword_service = GetForProfile(profile);
return hotword_service && hotword_service->RetryHotwordExtension();
}
HotwordServiceFactory::HotwordServiceFactory()
: BrowserContextKeyedServiceFactory(
"HotwordService",
BrowserContextDependencyManager::GetInstance()) {
// No dependencies.
}
HotwordServiceFactory::~HotwordServiceFactory() {
}
void HotwordServiceFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* prefs) {
prefs->RegisterBooleanPref(prefs::kHotwordSearchEnabled,
false,
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
prefs->RegisterIntegerPref(prefs::kHotwordOptInPopupTimesShown,
0,
user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
// Although this is default true, users will not send back information to
// Google unless they have opted in to Hotwording at which point they must
// also confirm that they wish this preference to be true or opt out of it.
prefs->RegisterBooleanPref(prefs::kHotwordAudioLoggingEnabled,
true,
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
}
KeyedService* HotwordServiceFactory::BuildServiceInstanceFor(
BrowserContext* context) const {
return new HotwordService(Profile::FromBrowserContext(context));
}
|