diff options
author | pvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-09 19:52:16 +0000 |
---|---|---|
committer | pvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-09 19:52:16 +0000 |
commit | 753efc479384c254e263fd11390846a060fa6ce0 (patch) | |
tree | 488097f0622c5d744059f3c2ada4894b683c5305 /chrome/common/pref_names.cc | |
parent | 5e4d24d67febed160e2020f5c8f13d8073921fc4 (diff) | |
download | chromium_src-753efc479384c254e263fd11390846a060fa6ce0.zip chromium_src-753efc479384c254e263fd11390846a060fa6ce0.tar.gz chromium_src-753efc479384c254e263fd11390846a060fa6ce0.tar.bz2 |
BSD ifdefs, etc. necessary for chrome/
Review URL: http://codereview.chromium.org/656009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 97b03c3..3f464ab 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -168,9 +168,9 @@ extern const wchar_t kDnsHostReferralList[] = L"HostReferralList"; // Is the cookie prompt expanded? extern const wchar_t kCookiePromptExpanded[] = L"cookieprompt.expanded"; -#if defined(OS_LINUX) +#if defined(USE_NSS) // Prefs for SSLConfigServicePref. Currently, these are only present on -// and used by Linux. +// and used by NSS-using OSes. extern const wchar_t kCertRevocationCheckingEnabled[] = L"ssl.rev_checking.enabled"; extern const wchar_t kSSL2Enabled[] = L"ssl.ssl2.enabled"; @@ -253,7 +253,7 @@ const wchar_t kPrintingPageHeaderRight[] = L"printing.page.header.right"; const wchar_t kPrintingPageFooterLeft[] = L"printing.page.footer.left"; const wchar_t kPrintingPageFooterCenter[] = L"printing.page.footer.center"; const wchar_t kPrintingPageFooterRight[] = L"printing.page.footer.right"; -#if defined(OS_LINUX) +#if defined(TOOLKIT_USES_GTK) // GTK specific preference on whether we should match the system GTK theme. const wchar_t kUsesSystemTheme[] = L"extensions.theme.use_system"; #endif |