diff options
Diffstat (limited to 'net/base/x509_certificate.cc')
-rw-r--r-- | net/base/x509_certificate.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/base/x509_certificate.cc b/net/base/x509_certificate.cc index 445f128..e82f245 100644 --- a/net/base/x509_certificate.cc +++ b/net/base/x509_certificate.cc @@ -42,6 +42,8 @@ #pragma comment(lib, "crypt32.lib") +namespace net { + namespace { // Returns true if this cert fingerprint is the null (all zero) fingerprint. @@ -567,3 +569,5 @@ void X509Certificate::Policy::Deny(X509Certificate* cert) { allowed_.erase(cert->fingerprint()); denied_.insert(cert->fingerprint()); } + +} // namespace net |