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

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

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/chrome_browser.gypi ('k') | chrome/common/pref_names.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 // Constants for the names of various preferences, for easier changing. 5 // Constants for the names of various preferences, for easier changing.
6 6
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ 7 #ifndef CHROME_COMMON_PREF_NAMES_H_
8 #define CHROME_COMMON_PREF_NAMES_H_ 8 #define CHROME_COMMON_PREF_NAMES_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 extern const char kSearchProviderOverridesVersion[]; 68 extern const char kSearchProviderOverridesVersion[];
69 extern const char kPromptForDownload[]; 69 extern const char kPromptForDownload[];
70 extern const char kAlternateErrorPagesEnabled[]; 70 extern const char kAlternateErrorPagesEnabled[];
71 extern const char kDnsPrefetchingEnabled[]; 71 extern const char kDnsPrefetchingEnabled[];
72 extern const char kDnsStartupPrefetchList[]; 72 extern const char kDnsStartupPrefetchList[];
73 extern const char kDnsHostReferralList[]; 73 extern const char kDnsHostReferralList[];
74 extern const char kDisableSpdy[]; 74 extern const char kDisableSpdy[];
75 extern const char kCookiePromptExpanded[]; 75 extern const char kCookiePromptExpanded[];
76 extern const char kInstantConfirmDialogShown[]; 76 extern const char kInstantConfirmDialogShown[];
77 extern const char kInstantEnabled[]; 77 extern const char kInstantEnabled[];
78 #if defined(USE_NSS) 78 #if defined(USE_NSS) || defined(USE_OPENSSL)
79 extern const char kCertRevocationCheckingEnabled[]; 79 extern const char kCertRevocationCheckingEnabled[];
80 extern const char kSSL2Enabled[]; 80 extern const char kSSL2Enabled[];
81 extern const char kSSL3Enabled[]; 81 extern const char kSSL3Enabled[];
82 extern const char kTLS1Enabled[]; 82 extern const char kTLS1Enabled[];
83 #endif 83 #endif
84 #if defined(OS_CHROMEOS) 84 #if defined(OS_CHROMEOS)
85 extern const char kTapToClickEnabled[]; 85 extern const char kTapToClickEnabled[];
86 extern const char kTouchpadSensitivity[]; 86 extern const char kTouchpadSensitivity[];
87 extern const char kLanguageCurrentInputMethod[]; 87 extern const char kLanguageCurrentInputMethod[];
88 extern const char kLanguagePreviousInputMethod[]; 88 extern const char kLanguagePreviousInputMethod[];
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 extern const char kProxyAutoDetect[]; 388 extern const char kProxyAutoDetect[];
389 extern const char kProxyServer[]; 389 extern const char kProxyServer[];
390 extern const char kProxyPacUrl[]; 390 extern const char kProxyPacUrl[];
391 extern const char kProxyBypassList[]; 391 extern const char kProxyBypassList[];
392 392
393 extern const char kRegisteredBackgroundContents[]; 393 extern const char kRegisteredBackgroundContents[];
394 394
395 } // namespace prefs 395 } // namespace prefs
396 396
397 #endif // CHROME_COMMON_PREF_NAMES_H_ 397 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/pref_names.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698