Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(714)

Side by Side Diff: chrome/common/pref_names.cc

Issue 4560001: Support specifying the GSSAPI library that will be used. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fix another compile error on Windows Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome_frame/metrics_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome_frame/metrics_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698