blob: d18b14c2cb9cfb6988cdc5125b7fe9b0eef637a1 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
// 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/command_line.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search/hotword_service.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
using content::BrowserContext;
using content::BrowserThread;
// static
HotwordService* HotwordServiceFactory::GetForProfile(BrowserContext* context) {
return static_cast<HotwordService*>(
GetInstance()->GetServiceForBrowserContext(context, true));
}
// static
HotwordServiceFactory* HotwordServiceFactory::GetInstance() {
return base::Singleton<HotwordServiceFactory>::get();
}
// 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::IsAlwaysOnAvailable() {
#if defined(OS_CHROMEOS)
if (HotwordService::IsHotwordHardwareAvailable())
return true;
#endif
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
return command_line->HasSwitch(switches::kEnableExperimentalHotwordHardware);
}
// static
int HotwordServiceFactory::GetCurrentError(BrowserContext* context) {
HotwordService* hotword_service = GetForProfile(context);
if (!hotword_service)
return 0;
return hotword_service->error_message();
}
HotwordServiceFactory::HotwordServiceFactory()
: BrowserContextKeyedServiceFactory(
"HotwordService",
BrowserContextDependencyManager::GetInstance()) {
// No dependencies.
}
HotwordServiceFactory::~HotwordServiceFactory() {
}
void HotwordServiceFactory::UpdateMicrophoneState() {
// In order to trigger the monitor, just call getAudioCaptureDevices.
content::MediaStreamDevices devices =
MediaCaptureDevicesDispatcher::GetInstance()->GetAudioCaptureDevices();
}
void HotwordServiceFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* prefs) {
prefs->RegisterBooleanPref(prefs::kHotwordAudioLoggingEnabled,
false,
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
prefs->RegisterStringPref(prefs::kHotwordPreviousLanguage,
std::string(),
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
// Per-device settings (do not sync).
prefs->RegisterBooleanPref(prefs::kHotwordSearchEnabled, false);
prefs->RegisterBooleanPref(prefs::kHotwordAlwaysOnSearchEnabled, false);
prefs->RegisterBooleanPref(prefs::kHotwordAlwaysOnNotificationSeen, false);
}
KeyedService* HotwordServiceFactory::BuildServiceInstanceFor(
BrowserContext* context) const {
return new HotwordService(Profile::FromBrowserContext(context));
}
|