| 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 2163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2174 // while rolling out the change to PAC. | 2174 // while rolling out the change to PAC. |
| 2175 const char kPacHttpsUrlStrippingEnabled[] = | 2175 const char kPacHttpsUrlStrippingEnabled[] = |
| 2176 "proxy.pac_https_url_stripping_enabled"; | 2176 "proxy.pac_https_url_stripping_enabled"; |
| 2177 | 2177 |
| 2178 // Whether Guest Mode is enabled within the browser. | 2178 // Whether Guest Mode is enabled within the browser. |
| 2179 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2179 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
| 2180 | 2180 |
| 2181 // Whether Adding a new Person is enabled within the user manager. | 2181 // Whether Adding a new Person is enabled within the user manager. |
| 2182 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; | 2182 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; |
| 2183 | 2183 |
| 2184 // Whether profile can be used before sign in. |
| 2185 const char kBrowserForceSigninEnabled[] = "profile.force_signin_enabled"; |
| 2186 |
| 2184 // Device identifier used by Easy Unlock stored in local state. This id will be | 2187 // Device identifier used by Easy Unlock stored in local state. This id will be |
| 2185 // combined with a user id, before being registered with the CryptAuth server, | 2188 // combined with a user id, before being registered with the CryptAuth server, |
| 2186 // so it can't correlate users on the same device. | 2189 // so it can't correlate users on the same device. |
| 2187 const char kEasyUnlockDeviceId[] = "easy_unlock.device_id"; | 2190 const char kEasyUnlockDeviceId[] = "easy_unlock.device_id"; |
| 2188 | 2191 |
| 2189 // A dictionary that maps user id to hardlock state. | 2192 // A dictionary that maps user id to hardlock state. |
| 2190 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; | 2193 const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; |
| 2191 | 2194 |
| 2192 // A dictionary that maps user id to public part of RSA key pair used by | 2195 // A dictionary that maps user id to public part of RSA key pair used by |
| 2193 // Easy Sign-in for the user. | 2196 // Easy Sign-in for the user. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2249 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2252 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2250 | 2253 |
| 2251 // A list of origin trial features to disable by policy. | 2254 // A list of origin trial features to disable by policy. |
| 2252 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2255 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2253 | 2256 |
| 2254 // Policy that indicates the state of updates for the binary components. | 2257 // Policy that indicates the state of updates for the binary components. |
| 2255 const char kComponentUpdatesEnabled[] = | 2258 const char kComponentUpdatesEnabled[] = |
| 2256 "component_updates.component_updates_enabled"; | 2259 "component_updates.component_updates_enabled"; |
| 2257 | 2260 |
| 2258 } // namespace prefs | 2261 } // namespace prefs |
| OLD | NEW |