Chromium Code Reviews| 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 1724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1735 // SPN. | 1735 // SPN. |
| 1736 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | 1736 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; |
| 1737 // Whitelist containing servers for which Integrated Authentication is enabled. | 1737 // Whitelist containing servers for which Integrated Authentication is enabled. |
| 1738 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | 1738 const char kAuthServerWhitelist[] = "auth.server_whitelist"; |
| 1739 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | 1739 // Whitelist containing servers Chrome is allowed to do Kerberos delegation |
| 1740 // with. | 1740 // with. |
| 1741 const char kAuthNegotiateDelegateWhitelist[] = | 1741 const char kAuthNegotiateDelegateWhitelist[] = |
| 1742 "auth.negotiate_delegate_whitelist"; | 1742 "auth.negotiate_delegate_whitelist"; |
| 1743 // String that specifies the name of a custom GSSAPI library to load. | 1743 // String that specifies the name of a custom GSSAPI library to load. |
| 1744 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | 1744 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
| 1745 // String that specifies the origin allowed to use SpdyProxy | |
|
cbentzel
2012/09/18 15:30:52
Nit: there should probablyh be a newline before th
Michael Piatek
2012/09/18 20:32:05
Done.
| |
| 1746 // authentication, if any. | |
| 1747 const char kSpdyProxyOrigin[] = "auth.spdyproxy.origin"; | |
| 1745 | 1748 |
| 1746 // Boolean that specifies whether to allow basic auth prompting on cross- | 1749 // Boolean that specifies whether to allow basic auth prompting on cross- |
| 1747 // domain sub-content requests. | 1750 // domain sub-content requests. |
| 1748 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1751 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
| 1749 | 1752 |
| 1750 #if defined(OS_CHROMEOS) | 1753 #if defined(OS_CHROMEOS) |
| 1751 // Dictionary for transient storage of settings that should go into device | 1754 // Dictionary for transient storage of settings that should go into device |
| 1752 // settings storage before owner has been assigned. | 1755 // settings storage before owner has been assigned. |
| 1753 const char kDeviceSettingsCache[] = "signed_settings_cache"; | 1756 const char kDeviceSettingsCache[] = "signed_settings_cache"; |
| 1754 | 1757 |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2017 | 2020 |
| 2018 // Counts how many more times the 'profile on a network share' warning should be | 2021 // Counts how many more times the 'profile on a network share' warning should be |
| 2019 // shown to the user before the next silence period. | 2022 // shown to the user before the next silence period. |
| 2020 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2023 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2021 // Tracks the time of the last shown warning. Used to reset | 2024 // Tracks the time of the last shown warning. Used to reset |
| 2022 // |network_profile.warnings_left| after a silence period. | 2025 // |network_profile.warnings_left| after a silence period. |
| 2023 const char kNetworkProfileLastWarningTime[] = | 2026 const char kNetworkProfileLastWarningTime[] = |
| 2024 "network_profile.last_warning_time"; | 2027 "network_profile.last_warning_time"; |
| 2025 | 2028 |
| 2026 } // namespace prefs | 2029 } // namespace prefs |
| OLD | NEW |