| 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 1714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1725 const char kDisableAuthNegotiateCnameLookup[] = | 1725 const char kDisableAuthNegotiateCnameLookup[] = |
| 1726 "auth.disable_negotiate_cname_lookup"; | 1726 "auth.disable_negotiate_cname_lookup"; |
| 1727 | 1727 |
| 1728 // Boolean that specifies whether to include the port in a generated Kerberos | 1728 // Boolean that specifies whether to include the port in a generated Kerberos |
| 1729 // SPN. | 1729 // SPN. |
| 1730 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | 1730 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; |
| 1731 | 1731 |
| 1732 // Whitelist containing servers for which Integrated Authentication is enabled. | 1732 // Whitelist containing servers for which Integrated Authentication is enabled. |
| 1733 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | 1733 const char kAuthServerWhitelist[] = "auth.server_whitelist"; |
| 1734 | 1734 |
| 1735 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | |
| 1736 // with. | |
| 1737 const char kAuthNegotiateDelegateWhitelist[] = | |
| 1738 "auth.negotiate_delegate_whitelist"; | |
| 1739 | |
| 1740 // String that specifies the name of a custom GSSAPI library to load. | 1735 // String that specifies the name of a custom GSSAPI library to load. |
| 1741 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1736 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
| 1742 | 1737 |
| 1743 // Boolean that specifies whether to allow basic auth prompting on cross- | 1738 // Boolean that specifies whether to allow basic auth prompting on cross- |
| 1744 // domain sub-content requests. | 1739 // domain sub-content requests. |
| 1745 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1740 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
| 1746 | 1741 |
| 1747 // Boolean that specifies whether the built-in asynchronous DNS client is used. | 1742 // Boolean that specifies whether the built-in asynchronous DNS client is used. |
| 1748 const char kBuiltInDnsClientEnabled[] = "async_dns.enabled"; | 1743 const char kBuiltInDnsClientEnabled[] = "async_dns.enabled"; |
| 1749 | 1744 |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2278 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2273 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
| 2279 | 2274 |
| 2280 // Last user's interaction with the password bubble. | 2275 // Last user's interaction with the password bubble. |
| 2281 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2276 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
| 2282 | 2277 |
| 2283 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2278 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
| 2284 const char kRecoveryComponentNeedsElevation[] = | 2279 const char kRecoveryComponentNeedsElevation[] = |
| 2285 "recovery_component.needs_elevation"; | 2280 "recovery_component.needs_elevation"; |
| 2286 | 2281 |
| 2287 } // namespace prefs | 2282 } // namespace prefs |
| OLD | NEW |