summaryrefslogtreecommitdiffstats
path: root/net/cert/cert_verify_proc.h
diff options
context:
space:
mode:
authorfelt@chromium.org <felt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-03 00:44:58 +0000
committerfelt@chromium.org <felt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-03 00:44:58 +0000
commite01d19fc58c347620f5a1f7dfa6e0845ec2dd323 (patch)
tree979e9c2f2c7f9cec8d1ba3fdca2c59ee7d662401 /net/cert/cert_verify_proc.h
parent993e56c9c6eccc9b6c0264427e3a63f61eadebf7 (diff)
downloadchromium_src-e01d19fc58c347620f5a1f7dfa6e0845ec2dd323.zip
chromium_src-e01d19fc58c347620f5a1f7dfa6e0845ec2dd323.tar.gz
chromium_src-e01d19fc58c347620f5a1f7dfa6e0845ec2dd323.tar.bz2
Adds new UMA entries to give us SSL clickthrough rates specific to intranet sites. Relies on value of IsHostnameNonUnique.
This CL also moves CertVerifyProc::IsHostnameNonUnique into net_util. BUG=225570 R=rsleevi@chromium.org Review URL: https://chromiumcodereview.appspot.com/21572002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215428 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/cert/cert_verify_proc.h')
-rw-r--r--net/cert/cert_verify_proc.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/net/cert/cert_verify_proc.h b/net/cert/cert_verify_proc.h
index 4feae19..518adbc 100644
--- a/net/cert/cert_verify_proc.h
+++ b/net/cert/cert_verify_proc.h
@@ -72,7 +72,6 @@ class NET_EXPORT CertVerifyProc
private:
friend class base::RefCountedThreadSafe<CertVerifyProc>;
- friend class CertVerifyProcNonUniqueNameTest;
FRIEND_TEST_ALL_PREFIXES(CertVerifyProcTest, DigiNotarCerts);
// Performs the actual verification using the desired underlying
@@ -91,17 +90,6 @@ class NET_EXPORT CertVerifyProc
// are hashes of SubjectPublicKeyInfo structures) is explicitly blocked.
static bool IsPublicKeyBlacklisted(const HashValueVector& public_key_hashes);
- // Returns true if |hostname| contains a name that is non-unique among
- // certificates (eg: an "internal server name").
- //
- // While such names are not scheduled to be deprecated until 1 November 2015
- // according to the CA/Browser Forum Baseline Requirements (v1.1), they
- // represent a real risk for the deployment of new gTLDs, and thus being
- // phased out ahead of the hard deadline.
- // TODO(rsleevi): http://crbug.com/119212 - Also match internal IP address
- // ranges.
- static bool IsHostnameNonUnique(const std::string& hostname);
-
DISALLOW_COPY_AND_ASSIGN(CertVerifyProc);
};