OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
10 | 10 |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // custodian of the supervised user. | 110 // custodian of the supervised user. |
111 const char kSupervisedUserCustodianProfileURL[] = | 111 const char kSupervisedUserCustodianProfileURL[] = |
112 "profile.managed.custodian_profile_url"; | 112 "profile.managed.custodian_profile_url"; |
113 | 113 |
114 // Maps host names to whether the host is manually allowed or blocked. | 114 // Maps host names to whether the host is manually allowed or blocked. |
115 const char kSupervisedUserManualHosts[] = "profile.managed.manual_hosts"; | 115 const char kSupervisedUserManualHosts[] = "profile.managed.manual_hosts"; |
116 | 116 |
117 // Maps URLs to whether the URL is manually allowed or blocked. | 117 // Maps URLs to whether the URL is manually allowed or blocked. |
118 const char kSupervisedUserManualURLs[] = "profile.managed.manual_urls"; | 118 const char kSupervisedUserManualURLs[] = "profile.managed.manual_urls"; |
119 | 119 |
| 120 // Maps extension ids to the approved version of this extension for a |
| 121 // supervised user. Missing extensions are not approved. |
| 122 const char kSupervisedUserApprovedExtensions[] = |
| 123 "profile.managed.approved_extensions"; |
| 124 |
120 // Stores whether the SafeSites filter is enabled. | 125 // Stores whether the SafeSites filter is enabled. |
121 const char kSupervisedUserSafeSites[] = "profile.managed.safe_sites"; | 126 const char kSupervisedUserSafeSites[] = "profile.managed.safe_sites"; |
122 | 127 |
123 // Stores the email address associated with the google account of the secondary | 128 // Stores the email address associated with the google account of the secondary |
124 // custodian of the supervised user, set when the supervised user is created. | 129 // custodian of the supervised user, set when the supervised user is created. |
125 const char kSupervisedUserSecondCustodianEmail[] = | 130 const char kSupervisedUserSecondCustodianEmail[] = |
126 "profile.managed.second_custodian_email"; | 131 "profile.managed.second_custodian_email"; |
127 | 132 |
128 // Stores the display name associated with the google account of the secondary | 133 // Stores the display name associated with the google account of the secondary |
129 // custodian of the supervised user, updated (if possible) each time the | 134 // custodian of the supervised user, updated (if possible) each time the |
(...skipping 2114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2244 #endif | 2249 #endif |
2245 | 2250 |
2246 // The base64-encoded representation of the public key to use to validate origin | 2251 // The base64-encoded representation of the public key to use to validate origin |
2247 // trial token signatures. | 2252 // trial token signatures. |
2248 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2253 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2249 | 2254 |
2250 // A list of origin trial features to disable by policy. | 2255 // A list of origin trial features to disable by policy. |
2251 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2256 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2252 | 2257 |
2253 } // namespace prefs | 2258 } // namespace prefs |
OLD | NEW |