| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1034 "auth.disable_negotiate_cname_lookup"; | 1034 "auth.disable_negotiate_cname_lookup"; |
| 1035 // Boolean that specifies whether to include the port in a generated Kerberos | 1035 // Boolean that specifies whether to include the port in a generated Kerberos |
| 1036 // SPN. | 1036 // SPN. |
| 1037 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | 1037 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; |
| 1038 // Whitelist containing servers for which Integrated Authentication is enabled. | 1038 // Whitelist containing servers for which Integrated Authentication is enabled. |
| 1039 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | 1039 const char kAuthServerWhitelist[] = "auth.server_whitelist"; |
| 1040 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | 1040 // Whitelist containing servers Chrome is allowed to do Kerberos delegation |
| 1041 // with. | 1041 // with. |
| 1042 const char kAuthNegotiateDelegateWhitelist[] = | 1042 const char kAuthNegotiateDelegateWhitelist[] = |
| 1043 "auth.negotiate_delegate_whitelist"; | 1043 "auth.negotiate_delegate_whitelist"; |
| 1044 // String that specifies the name of a custom GSSAPI library to load. |
| 1045 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; |
| 1044 | 1046 |
| 1045 #if defined(OS_CHROMEOS) | 1047 #if defined(OS_CHROMEOS) |
| 1046 // Dictionary for transient storage of settings that should go into signed | 1048 // Dictionary for transient storage of settings that should go into signed |
| 1047 // settings storage before owner has been assigned. | 1049 // settings storage before owner has been assigned. |
| 1048 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; | 1050 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; |
| 1049 #endif | 1051 #endif |
| 1050 | 1052 |
| 1051 // *************** SERVICE PREFS *************** | 1053 // *************** SERVICE PREFS *************** |
| 1052 // These are attached to the service process. | 1054 // These are attached to the service process. |
| 1053 | 1055 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 1077 // String specifying the proxy server. For a specification of the expected | 1079 // String specifying the proxy server. For a specification of the expected |
| 1078 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 1080 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 1079 const char kProxyServer[] = "proxy.server"; | 1081 const char kProxyServer[] = "proxy.server"; |
| 1080 // URL to the proxy .pac file. | 1082 // URL to the proxy .pac file. |
| 1081 const char kProxyPacUrl[] = "proxy.pac_url"; | 1083 const char kProxyPacUrl[] = "proxy.pac_url"; |
| 1082 // String containing proxy bypass rules. For a specification of the | 1084 // String containing proxy bypass rules. For a specification of the |
| 1083 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 1085 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 1084 const char kProxyBypassList[] = "proxy.bypass_list"; | 1086 const char kProxyBypassList[] = "proxy.bypass_list"; |
| 1085 | 1087 |
| 1086 } // namespace prefs | 1088 } // namespace prefs |
| OLD | NEW |