summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-27 22:55:16 +0000
committerwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-27 22:55:16 +0000
commit192b9a0cc09f62b26b1435d1ce88a257d36fb992 (patch)
treed2e29ab16a8932b901864aab4957ede107cf3097 /net
parentd7c9f429c2a8d56e394f8b0f037158cb64736cb4 (diff)
downloadchromium_src-192b9a0cc09f62b26b1435d1ce88a257d36fb992.zip
chromium_src-192b9a0cc09f62b26b1435d1ce88a257d36fb992.tar.gz
chromium_src-192b9a0cc09f62b26b1435d1ce88a257d36fb992.tar.bz2
Remove an obsolete TODO comment. Support for the Netscape SSL
server name certificate extension was removed in NSS 3.12.7. R=rsleevi BUG=none TEST=Verify this with https://bugzilla.mozilla.org/show_bug.cgi?id=554425 Review URL: http://codereview.chromium.org/3223005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57742 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/base/x509_certificate_nss.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/net/base/x509_certificate_nss.cc b/net/base/x509_certificate_nss.cc
index b3f3966..e7c168f 100644
--- a/net/base/x509_certificate_nss.cc
+++ b/net/base/x509_certificate_nss.cc
@@ -590,10 +590,6 @@ void X509Certificate::GetDNSNames(std::vector<std::string>* dns_names) const {
// Compare with CERT_VerifyCertName().
GetCertSubjectAltNamesOfType(cert_handle_, certDNSName, dns_names);
- // TODO(port): suppress nss's support of the obsolete extension
- // SEC_OID_NS_CERT_EXT_SSL_SERVER_NAME
- // by providing our own authCertificate callback.
-
if (dns_names->empty())
dns_names->push_back(subject_.common_name);
}