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/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1670 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | 1670 const char kAuthServerWhitelist[] = "auth.server_whitelist"; |
1671 | 1671 |
1672 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | 1672 // Whitelist containing servers Chrome is allowed to do Kerberos delegation |
1673 // with. | 1673 // with. |
1674 const char kAuthNegotiateDelegateWhitelist[] = | 1674 const char kAuthNegotiateDelegateWhitelist[] = |
1675 "auth.negotiate_delegate_whitelist"; | 1675 "auth.negotiate_delegate_whitelist"; |
1676 | 1676 |
1677 // String that specifies the name of a custom GSSAPI library to load. | 1677 // String that specifies the name of a custom GSSAPI library to load. |
1678 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1678 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
1679 | 1679 |
| 1680 // String that specifies the name of Android account type to use for Negotiate |
| 1681 // authentication. |
| 1682 const char kAuthAndroidNegotiateAccountType[] = |
| 1683 "auth.android_negotiate_account_type"; |
| 1684 |
1680 // Boolean that specifies whether to allow basic auth prompting on cross- | 1685 // Boolean that specifies whether to allow basic auth prompting on cross- |
1681 // domain sub-content requests. | 1686 // domain sub-content requests. |
1682 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1687 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
1683 | 1688 |
1684 // Boolean that specifies whether the built-in asynchronous DNS client is used. | 1689 // Boolean that specifies whether the built-in asynchronous DNS client is used. |
1685 const char kBuiltInDnsClientEnabled[] = "async_dns.enabled"; | 1690 const char kBuiltInDnsClientEnabled[] = "async_dns.enabled"; |
1686 | 1691 |
1687 // A pref holding the value of the policy used to explicitly allow or deny | 1692 // A pref holding the value of the policy used to explicitly allow or deny |
1688 // access to audio capture devices. When enabled or not set, the user is | 1693 // access to audio capture devices. When enabled or not set, the user is |
1689 // prompted for device access. When disabled, access to audio capture devices | 1694 // prompted for device access. When disabled, access to audio capture devices |
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2242 // (name and a list of clients that registered the whitelist). | 2247 // (name and a list of clients that registered the whitelist). |
2243 const char kRegisteredSupervisedUserWhitelists[] = | 2248 const char kRegisteredSupervisedUserWhitelists[] = |
2244 "supervised_users.whitelists"; | 2249 "supervised_users.whitelists"; |
2245 | 2250 |
2246 #if defined(ENABLE_EXTENSIONS) | 2251 #if defined(ENABLE_EXTENSIONS) |
2247 // Policy that indicates how to handle animated images. | 2252 // Policy that indicates how to handle animated images. |
2248 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2253 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2249 #endif | 2254 #endif |
2250 | 2255 |
2251 } // namespace prefs | 2256 } // namespace prefs |
OLD | NEW |