diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 14:25:09 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 14:25:09 +0000 |
commit | 8c434cbca7f80a688d546288c5497e184062be66 (patch) | |
tree | a21a10b9ad17e5169530346dd229ea38e2632cf6 /net/base | |
parent | b647ed2eaab8f34ba9ae19c6472fa5021b0913d4 (diff) | |
download | chromium_src-8c434cbca7f80a688d546288c5497e184062be66.zip chromium_src-8c434cbca7f80a688d546288c5497e184062be66.tar.gz chromium_src-8c434cbca7f80a688d546288c5497e184062be66.tar.bz2 |
net: always enable NSS's HTTP fetches
By tying them to revocation checking and disabling revocation checking by
default, I broke AIA chasing on Linux.
This change also renames the public functions in nss_ocsp.cc to better reflect
that HTTP fetching is used for more than just OCSP.
BUG=117832
TEST=none (yet)
Review URL: https://chromiumcodereview.appspot.com/9693004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126637 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/net_test_suite.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/net_test_suite.cc b/net/base/net_test_suite.cc index 2d2b411..ecd1316 100644 --- a/net/base/net_test_suite.cc +++ b/net/base/net_test_suite.cc @@ -39,7 +39,7 @@ void NetTestSuite::Initialize() { void NetTestSuite::Shutdown() { #if defined(USE_NSS) - net::ShutdownOCSP(); + net::ShutdownNSSHttpIO(); #endif // We want to destroy this here before the TestSuite continues to tear down |