| 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 1713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1724 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | 1724 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
| 1725 #endif | 1725 #endif |
| 1726 | 1726 |
| 1727 // String that lists supported HTTP authentication schemes. | 1727 // String that lists supported HTTP authentication schemes. |
| 1728 const char kAuthSchemes[] = "auth.schemes"; | 1728 const char kAuthSchemes[] = "auth.schemes"; |
| 1729 | 1729 |
| 1730 // Boolean that specifies whether to disable CNAME lookups when generating | 1730 // Boolean that specifies whether to disable CNAME lookups when generating |
| 1731 // Kerberos SPN. | 1731 // Kerberos SPN. |
| 1732 const char kDisableAuthNegotiateCnameLookup[] = | 1732 const char kDisableAuthNegotiateCnameLookup[] = |
| 1733 "auth.disable_negotiate_cname_lookup"; | 1733 "auth.disable_negotiate_cname_lookup"; |
| 1734 |
| 1734 // Boolean that specifies whether to include the port in a generated Kerberos | 1735 // Boolean that specifies whether to include the port in a generated Kerberos |
| 1735 // SPN. | 1736 // SPN. |
| 1736 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | 1737 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; |
| 1738 |
| 1737 // Whitelist containing servers for which Integrated Authentication is enabled. | 1739 // Whitelist containing servers for which Integrated Authentication is enabled. |
| 1738 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | 1740 const char kAuthServerWhitelist[] = "auth.server_whitelist"; |
| 1741 |
| 1739 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | 1742 // Whitelist containing servers Chrome is allowed to do Kerberos delegation |
| 1740 // with. | 1743 // with. |
| 1741 const char kAuthNegotiateDelegateWhitelist[] = | 1744 const char kAuthNegotiateDelegateWhitelist[] = |
| 1742 "auth.negotiate_delegate_whitelist"; | 1745 "auth.negotiate_delegate_whitelist"; |
| 1746 |
| 1743 // String that specifies the name of a custom GSSAPI library to load. | 1747 // String that specifies the name of a custom GSSAPI library to load. |
| 1744 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1748 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
| 1745 | 1749 |
| 1750 // String that specifies the origin allowed to use SpdyProxy |
| 1751 // authentication, if any. |
| 1752 const char kSpdyProxyOrigin[] = "auth.spdyproxy.origin"; |
| 1753 |
| 1746 // Boolean that specifies whether to allow basic auth prompting on cross- | 1754 // Boolean that specifies whether to allow basic auth prompting on cross- |
| 1747 // domain sub-content requests. | 1755 // domain sub-content requests. |
| 1748 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1756 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
| 1749 | 1757 |
| 1750 #if defined(OS_CHROMEOS) | 1758 #if defined(OS_CHROMEOS) |
| 1751 // Dictionary for transient storage of settings that should go into device | 1759 // Dictionary for transient storage of settings that should go into device |
| 1752 // settings storage before owner has been assigned. | 1760 // settings storage before owner has been assigned. |
| 1753 const char kDeviceSettingsCache[] = "signed_settings_cache"; | 1761 const char kDeviceSettingsCache[] = "signed_settings_cache"; |
| 1754 | 1762 |
| 1755 // The hardware keyboard layout of the device. This should look like | 1763 // The hardware keyboard layout of the device. This should look like |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2017 | 2025 |
| 2018 // Counts how many more times the 'profile on a network share' warning should be | 2026 // Counts how many more times the 'profile on a network share' warning should be |
| 2019 // shown to the user before the next silence period. | 2027 // shown to the user before the next silence period. |
| 2020 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2028 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2021 // Tracks the time of the last shown warning. Used to reset | 2029 // Tracks the time of the last shown warning. Used to reset |
| 2022 // |network_profile.warnings_left| after a silence period. | 2030 // |network_profile.warnings_left| after a silence period. |
| 2023 const char kNetworkProfileLastWarningTime[] = | 2031 const char kNetworkProfileLastWarningTime[] = |
| 2024 "network_profile.last_warning_time"; | 2032 "network_profile.last_warning_time"; |
| 2025 | 2033 |
| 2026 } // namespace prefs | 2034 } // namespace prefs |
| OLD | NEW |