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

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

Issue 3855004: Make USE_OPENSSL and USE_NSS mutually exclusive (Closed)
Patch Set: wtc comments Created 10 years, 2 months 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | net/base/cert_database.h » ('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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 205
206 // Is the cookie prompt expanded? 206 // Is the cookie prompt expanded?
207 const char kCookiePromptExpanded[] = "cookieprompt.expanded"; 207 const char kCookiePromptExpanded[] = "cookieprompt.expanded";
208 208
209 // Boolean pref indicating whether the instant confirm dialog has been shown. 209 // Boolean pref indicating whether the instant confirm dialog has been shown.
210 const char kInstantConfirmDialogShown[] = "instant.confirm_dialog_shown"; 210 const char kInstantConfirmDialogShown[] = "instant.confirm_dialog_shown";
211 211
212 // Boolean pref indicating if instant is enabled. 212 // Boolean pref indicating if instant is enabled.
213 const char kInstantEnabled[] = "instant.enabled"; 213 const char kInstantEnabled[] = "instant.enabled";
214 214
215 #if defined(USE_NSS) 215 #if defined(USE_NSS) || defined(USE_OPENSSL)
216 // Prefs for SSLConfigServicePref. Currently, these are only present on 216 // Prefs for SSLConfigServicePref. Currently, these are only present on
217 // and used by NSS-using OSes. 217 // and used by NSS/OpenSSL using OSes.
218 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; 218 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled";
219 const char kSSL2Enabled[] = "ssl.ssl2.enabled"; 219 const char kSSL2Enabled[] = "ssl.ssl2.enabled";
220 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; 220 const char kSSL3Enabled[] = "ssl.ssl3.enabled";
221 const char kTLS1Enabled[] = "ssl.tls1.enabled"; 221 const char kTLS1Enabled[] = "ssl.tls1.enabled";
222 #endif 222 #endif
223 223
224 #if defined(OS_CHROMEOS) 224 #if defined(OS_CHROMEOS)
225 // A boolean pref set to true if TapToClick is being done in browser. 225 // A boolean pref set to true if TapToClick is being done in browser.
226 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; 226 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click";
227 227
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 // String specifying the proxy server. For a specification of the expected 1046 // String specifying the proxy server. For a specification of the expected
1047 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). 1047 // syntax see net::ProxyConfig::ProxyRules::ParseFromString().
1048 const char kProxyServer[] = "proxy.server"; 1048 const char kProxyServer[] = "proxy.server";
1049 // URL to the proxy .pac file. 1049 // URL to the proxy .pac file.
1050 const char kProxyPacUrl[] = "proxy.pac_url"; 1050 const char kProxyPacUrl[] = "proxy.pac_url";
1051 // String containing proxy bypass rules. For a specification of the 1051 // String containing proxy bypass rules. For a specification of the
1052 // expected syntax see net::ProxyBypassRules::ParseFromString(). 1052 // expected syntax see net::ProxyBypassRules::ParseFromString().
1053 const char kProxyBypassList[] = "proxy.bypass_list"; 1053 const char kProxyBypassList[] = "proxy.bypass_list";
1054 1054
1055 } // namespace prefs 1055 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | net/base/cert_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698