[email protected] | cce15bb | 2014-06-17 13:43:51 | [diff] [blame] | 1 | // Copyright 2014 The Chromium Authors. All rights reserved. |
[email protected] | 723b891a | 2013-09-06 17:12:56 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | cce15bb | 2014-06-17 13:43:51 | [diff] [blame] | 5 | #include "chrome/browser/supervised_user/supervised_user_constants.h" |
[email protected] | 723b891a | 2013-09-06 17:12:56 | [diff] [blame] | 6 | |
[email protected] | cce15bb | 2014-06-17 13:43:51 | [diff] [blame] | 7 | namespace supervised_users { |
[email protected] | 723b891a | 2013-09-06 17:12:56 | [diff] [blame] | 8 | |
Marton Hunyady | 82533de | 2017-11-23 17:25:55 | [diff] [blame] | 9 | #if defined(OS_CHROMEOS) |
10 | const char kAccountConsistencyMirrorRequired[] = | ||||
11 | "AccountConsistencyMirrorRequired"; | ||||
12 | #endif | ||||
mamir | e960964 | 2016-06-28 22:17:54 | [diff] [blame] | 13 | const char kApprovedExtensions[] = "ApprovedExtensions"; |
Yeol | f0846cc0 | 2018-08-01 07:43:25 | [diff] [blame] | 14 | const char kAuthorizationHeaderFormat[] = "Bearer %s"; |
knn | 95221ffe | 2015-03-04 20:42:43 | [diff] [blame] | 15 | const char kCameraMicDisabled[] = "CameraMicDisabled"; |
[email protected] | 723b891a | 2013-09-06 17:12:56 | [diff] [blame] | 16 | const char kContentPackDefaultFilteringBehavior[] = |
17 | "ContentPackDefaultFilteringBehavior"; | ||||
18 | const char kContentPackManualBehaviorHosts[] = "ContentPackManualBehaviorHosts"; | ||||
19 | const char kContentPackManualBehaviorURLs[] = "ContentPackManualBehaviorURLs"; | ||||
bauerb | c3d40a3 | 2017-01-17 17:05:10 | [diff] [blame] | 20 | const char kCookiesAlwaysAllowed[] = "CookiesAlwaysAllowed"; |
[email protected] | 723b891a | 2013-09-06 17:12:56 | [diff] [blame] | 21 | const char kForceSafeSearch[] = "ForceSafeSearch"; |
knn | 95221ffe | 2015-03-04 20:42:43 | [diff] [blame] | 22 | const char kGeolocationDisabled[] = "GeolocationDisabled"; |
fhorschig | 1f351f0 | 2014-09-30 12:30:22 | [diff] [blame] | 23 | const char kRecordHistory[] = "RecordHistory"; |
bauerb | b519f825 | 2016-05-13 09:16:39 | [diff] [blame] | 24 | const char kRecordHistoryIncludesSessionSync[] = |
25 | "RecordHistoryIncludesSessionSync"; | ||||
treib | 767520c | 2015-08-03 15:36:46 | [diff] [blame] | 26 | const char kSafeSitesEnabled[] = "SafeSites"; |
Mihai Sardarescu | f87ccc1 | 2018-09-26 10:37:45 | [diff] [blame^] | 27 | const char kSigninAllowed[] = "SigninAllowed"; |
[email protected] | 723b891a | 2013-09-06 17:12:56 | [diff] [blame] | 28 | const char kUserName[] = "UserName"; |
29 | |||||
Colin Blundell | cfc450e | 2018-07-10 16:52:40 | [diff] [blame] | 30 | // NOTE: Do not change this value without changing the value of the |
31 | // corresponding constant in | ||||
32 | // //services/identity/public/cpp/identity_manager.cc to correspond. | ||||
[email protected] | cce15bb | 2014-06-17 13:43:51 | [diff] [blame] | 33 | const char kSupervisedUserPseudoEmail[] = "managed_user@localhost"; |
[email protected] | aab94691 | 2013-11-06 22:18:51 | [diff] [blame] | 34 | |
treib | 4887f08 | 2014-12-08 12:37:18 | [diff] [blame] | 35 | const char kChildAccountSUID[] = "ChildAccountSUID"; |
36 | |||||
[email protected] | 3ae4c61 | 2014-02-13 16:08:49 | [diff] [blame] | 37 | const char kChromeAvatarIndex[] = "chrome-avatar-index"; |
38 | const char kChromeOSAvatarIndex[] = "chromeos-avatar-index"; | ||||
39 | |||||
[email protected] | 3ac16ce | 2014-03-18 17:25:02 | [diff] [blame] | 40 | const char kChromeOSPasswordData[] = "chromeos-password-data"; |
41 | |||||
[email protected] | cce15bb | 2014-06-17 13:43:51 | [diff] [blame] | 42 | } // namespace supervised_users |