| 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 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 1733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1744 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | 1744 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
| 1745 #endif | 1745 #endif |
| 1746 | 1746 |
| 1747 // String that lists supported HTTP authentication schemes. | 1747 // String that lists supported HTTP authentication schemes. |
| 1748 const char kAuthSchemes[] = "auth.schemes"; | 1748 const char kAuthSchemes[] = "auth.schemes"; |
| 1749 | 1749 |
| 1750 // Boolean that specifies whether to disable CNAME lookups when generating | 1750 // Boolean that specifies whether to disable CNAME lookups when generating |
| 1751 // Kerberos SPN. | 1751 // Kerberos SPN. |
| 1752 const char kDisableAuthNegotiateCnameLookup[] = | 1752 const char kDisableAuthNegotiateCnameLookup[] = |
| 1753 "auth.disable_negotiate_cname_lookup"; | 1753 "auth.disable_negotiate_cname_lookup"; |
| 1754 |
| 1754 // Boolean that specifies whether to include the port in a generated Kerberos | 1755 // Boolean that specifies whether to include the port in a generated Kerberos |
| 1755 // SPN. | 1756 // SPN. |
| 1756 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | 1757 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; |
| 1758 |
| 1757 // Whitelist containing servers for which Integrated Authentication is enabled. | 1759 // Whitelist containing servers for which Integrated Authentication is enabled. |
| 1758 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | 1760 const char kAuthServerWhitelist[] = "auth.server_whitelist"; |
| 1761 |
| 1759 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | 1762 // Whitelist containing servers Chrome is allowed to do Kerberos delegation |
| 1760 // with. | 1763 // with. |
| 1761 const char kAuthNegotiateDelegateWhitelist[] = | 1764 const char kAuthNegotiateDelegateWhitelist[] = |
| 1762 "auth.negotiate_delegate_whitelist"; | 1765 "auth.negotiate_delegate_whitelist"; |
| 1766 |
| 1763 // String that specifies the name of a custom GSSAPI library to load. | 1767 // String that specifies the name of a custom GSSAPI library to load. |
| 1764 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1768 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
| 1765 | 1769 |
| 1770 // String that specifies the origin allowed to use SpdyProxy |
| 1771 // authentication, if any. |
| 1772 const char kSpdyProxyOrigin[] = "auth.spdyproxy.origin"; |
| 1773 |
| 1766 // Boolean that specifies whether to allow basic auth prompting on cross- | 1774 // Boolean that specifies whether to allow basic auth prompting on cross- |
| 1767 // domain sub-content requests. | 1775 // domain sub-content requests. |
| 1768 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1776 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
| 1769 | 1777 |
| 1770 #if defined(OS_CHROMEOS) | 1778 #if defined(OS_CHROMEOS) |
| 1771 // Dictionary for transient storage of settings that should go into device | 1779 // Dictionary for transient storage of settings that should go into device |
| 1772 // settings storage before owner has been assigned. | 1780 // settings storage before owner has been assigned. |
| 1773 const char kDeviceSettingsCache[] = "signed_settings_cache"; | 1781 const char kDeviceSettingsCache[] = "signed_settings_cache"; |
| 1774 | 1782 |
| 1775 // The hardware keyboard layout of the device. This should look like | 1783 // The hardware keyboard layout of the device. This should look like |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2057 // Tracks the time of the last shown warning. Used to reset | 2065 // Tracks the time of the last shown warning. Used to reset |
| 2058 // |network_profile.warnings_left| after a silence period. | 2066 // |network_profile.warnings_left| after a silence period. |
| 2059 const char kNetworkProfileLastWarningTime[] = | 2067 const char kNetworkProfileLastWarningTime[] = |
| 2060 "network_profile.last_warning_time"; | 2068 "network_profile.last_warning_time"; |
| 2061 | 2069 |
| 2062 // 64-bit serialization of the time last policy usage statistics were collected | 2070 // 64-bit serialization of the time last policy usage statistics were collected |
| 2063 // by UMA_HISTOGRAM_ENUMERATION. | 2071 // by UMA_HISTOGRAM_ENUMERATION. |
| 2064 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2072 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2065 | 2073 |
| 2066 } // namespace prefs | 2074 } // namespace prefs |
| OLD | NEW |