| 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 1743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1754 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | 1754 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
| 1755 #endif | 1755 #endif |
| 1756 | 1756 |
| 1757 // String that lists supported HTTP authentication schemes. | 1757 // String that lists supported HTTP authentication schemes. |
| 1758 const char kAuthSchemes[] = "auth.schemes"; | 1758 const char kAuthSchemes[] = "auth.schemes"; |
| 1759 | 1759 |
| 1760 // Boolean that specifies whether to disable CNAME lookups when generating | 1760 // Boolean that specifies whether to disable CNAME lookups when generating |
| 1761 // Kerberos SPN. | 1761 // Kerberos SPN. |
| 1762 const char kDisableAuthNegotiateCnameLookup[] = | 1762 const char kDisableAuthNegotiateCnameLookup[] = |
| 1763 "auth.disable_negotiate_cname_lookup"; | 1763 "auth.disable_negotiate_cname_lookup"; |
| 1764 |
| 1764 // Boolean that specifies whether to include the port in a generated Kerberos | 1765 // Boolean that specifies whether to include the port in a generated Kerberos |
| 1765 // SPN. | 1766 // SPN. |
| 1766 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | 1767 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; |
| 1768 |
| 1767 // Whitelist containing servers for which Integrated Authentication is enabled. | 1769 // Whitelist containing servers for which Integrated Authentication is enabled. |
| 1768 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | 1770 const char kAuthServerWhitelist[] = "auth.server_whitelist"; |
| 1771 |
| 1769 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | 1772 // Whitelist containing servers Chrome is allowed to do Kerberos delegation |
| 1770 // with. | 1773 // with. |
| 1771 const char kAuthNegotiateDelegateWhitelist[] = | 1774 const char kAuthNegotiateDelegateWhitelist[] = |
| 1772 "auth.negotiate_delegate_whitelist"; | 1775 "auth.negotiate_delegate_whitelist"; |
| 1776 |
| 1773 // String that specifies the name of a custom GSSAPI library to load. | 1777 // String that specifies the name of a custom GSSAPI library to load. |
| 1774 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1778 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
| 1775 | 1779 |
| 1780 // String that specifies the origin allowed to use SpdyProxy |
| 1781 // authentication, if any. |
| 1782 const char kSpdyProxyOrigin[] = "auth.spdyproxy.origin"; |
| 1783 |
| 1776 // Boolean that specifies whether to allow basic auth prompting on cross- | 1784 // Boolean that specifies whether to allow basic auth prompting on cross- |
| 1777 // domain sub-content requests. | 1785 // domain sub-content requests. |
| 1778 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1786 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
| 1779 | 1787 |
| 1780 #if defined(OS_CHROMEOS) | 1788 #if defined(OS_CHROMEOS) |
| 1781 // Dictionary for transient storage of settings that should go into device | 1789 // Dictionary for transient storage of settings that should go into device |
| 1782 // settings storage before owner has been assigned. | 1790 // settings storage before owner has been assigned. |
| 1783 const char kDeviceSettingsCache[] = "signed_settings_cache"; | 1791 const char kDeviceSettingsCache[] = "signed_settings_cache"; |
| 1784 | 1792 |
| 1785 // The hardware keyboard layout of the device. This should look like | 1793 // The hardware keyboard layout of the device. This should look like |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2071 // Tracks the time of the last shown warning. Used to reset | 2079 // Tracks the time of the last shown warning. Used to reset |
| 2072 // |network_profile.warnings_left| after a silence period. | 2080 // |network_profile.warnings_left| after a silence period. |
| 2073 const char kNetworkProfileLastWarningTime[] = | 2081 const char kNetworkProfileLastWarningTime[] = |
| 2074 "network_profile.last_warning_time"; | 2082 "network_profile.last_warning_time"; |
| 2075 | 2083 |
| 2076 // 64-bit serialization of the time last policy usage statistics were collected | 2084 // 64-bit serialization of the time last policy usage statistics were collected |
| 2077 // by UMA_HISTOGRAM_ENUMERATION. | 2085 // by UMA_HISTOGRAM_ENUMERATION. |
| 2078 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2086 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2079 | 2087 |
| 2080 } // namespace prefs | 2088 } // namespace prefs |
| OLD | NEW |