forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchromeos_pref_names.h
59 lines (53 loc) · 2.41 KB
/
chromeos_pref_names.h
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
// Copyright 2014 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.
#ifndef CHROMEOS_CONSTANTS_CHROMEOS_PREF_NAMES_H_
#define CHROMEOS_CONSTANTS_CHROMEOS_PREF_NAMES_H_
#include "base/component_export.h"
namespace chromeos {
namespace prefs {
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kAssistiveInputFeatureSettings[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kAssistPersonalInfoEnabled[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kEmojiSuggestionEnabled[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kEmojiSuggestionEnterpriseAllowed[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const char kAudioDevicesMute[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kAudioDevicesGainPercent[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kAudioDevicesVolumePercent[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const char kAudioMute[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const char kAudioOutputAllowed[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const char kAudioVolumePercent[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const char kAudioDevicesState[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS) extern const char kEduCoexistenceId[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kEduCoexistenceSecondaryAccountsInvalidationVersion[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kEduCoexistenceToSVersion[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kQuirksClientLastServerCheck[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kDeviceWiFiFastTransitionEnabled[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kSecondaryGoogleAccountSigninAllowed[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kSamlPasswordModifiedTime[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kSamlPasswordExpirationTime[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kSamlPasswordChangeUrl[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kSyncOobeCompleted[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kLoginDisplayPasswordButtonEnabled[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kSuggestedContentEnabled[];
COMPONENT_EXPORT(CHROMEOS_CONSTANTS)
extern const char kLauncherResultEverLaunched[];
} // namespace prefs
} // namespace chromeos
#endif // CHROMEOS_CONSTANTS_CHROMEOS_PREF_NAMES_H_