summaryrefslogtreecommitdiffstats
path: root/content/app
diff options
context:
space:
mode:
authordavidben <davidben@chromium.org>2015-04-17 13:54:48 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-17 20:56:33 +0000
commit71f35ff13af84be1b97483307e050d83c2179134 (patch)
treef86153f4b95657ee796d1309df9432504e91dad7 /content/app
parentef11ee1b6fc8b5529ba82bcd2f00202cd41312bc (diff)
downloadchromium_src-71f35ff13af84be1b97483307e050d83c2179134.zip
chromium_src-71f35ff13af84be1b97483307e050d83c2179134.tar.gz
chromium_src-71f35ff13af84be1b97483307e050d83c2179134.tar.bz2
Rename USE_NSS to USE_NSS_CERTS.
USE_NSS is confusing because it's not actually the analog of USE_OPENSSL; it's the analog to USE_OPENSSL_CERTS. This is in preparation for the chimera build which will set USE_OPENSSL and USE_NSS(_CERTS). This CL was partially done automatically by the following command: git grep -l USE_NSS | xargs sed -i -e 's/defined(USE_NSS)/defined(USE_NSS_CERTS)/' The remaining were caught by the following command and fixed manually: git grep 'USE_NSS\([^_]\|$\)' Finally, the following command verified nothing in a separate repository was sensitive to this change: find . -name '*.cc' -o -name '*.h' | xargs grep 'USE_NSS\([^_]\|$\)' For now, the old name is still defined, but not used within Chromium. A follow-up CL will remove deprecated use_nss and USE_NSS #defines together which will then cause downstream churn. Though from a grep of known downstreams, the churn seems to be fairly minimal. The removal is split from this CL so that, if we need to revert, the CL to revert is small. TBR=pneubeck@chromium.org BUG=462040 Review URL: https://codereview.chromium.org/1082123003 Cr-Commit-Position: refs/heads/master@{#325710}
Diffstat (limited to 'content/app')
-rw-r--r--content/app/content_main_runner.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
index 0db941a..4c8dcbb 100644
--- a/content/app/content_main_runner.cc
+++ b/content/app/content_main_runner.cc
@@ -683,7 +683,7 @@ class ContentMainRunnerImpl : public ContentMainRunner {
}
#endif
-#if defined(USE_NSS)
+#if defined(USE_NSS_CERTS)
crypto::EarlySetupForNSSInit();
#endif