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 1702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1713 | 1713 |
1714 #if !defined(OS_ANDROID) | 1714 #if !defined(OS_ANDROID) |
1715 // An int that stores how often we've shown the "Chrome is configured to | 1715 // An int that stores how often we've shown the "Chrome is configured to |
1716 // auto-launch" infobar. | 1716 // auto-launch" infobar. |
1717 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | 1717 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
1718 #endif | 1718 #endif |
1719 | 1719 |
1720 // String that lists supported HTTP authentication schemes. | 1720 // String that lists supported HTTP authentication schemes. |
1721 const char kAuthSchemes[] = "auth.schemes"; | 1721 const char kAuthSchemes[] = "auth.schemes"; |
1722 | 1722 |
1723 // Boolean that specifies whether to disable CNAME lookups when generating | |
1724 // Kerberos SPN. | |
1725 const char kDisableAuthNegotiateCnameLookup[] = | |
1726 "auth.disable_negotiate_cname_lookup"; | |
1727 | |
1728 // Boolean that specifies whether to include the port in a generated Kerberos | 1723 // Boolean that specifies whether to include the port in a generated Kerberos |
1729 // SPN. | 1724 // SPN. |
1730 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | 1725 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; |
1731 | 1726 |
1732 // Whitelist containing servers for which Integrated Authentication is enabled. | 1727 // Whitelist containing servers for which Integrated Authentication is enabled. |
1733 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | 1728 const char kAuthServerWhitelist[] = "auth.server_whitelist"; |
1734 | 1729 |
1735 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | 1730 // Whitelist containing servers Chrome is allowed to do Kerberos delegation |
1736 // with. | 1731 // with. |
1737 const char kAuthNegotiateDelegateWhitelist[] = | 1732 const char kAuthNegotiateDelegateWhitelist[] = |
(...skipping 540 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 |