Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Unified Diff: net/ssl/ssl_config.h

Issue 547603002: Certificate Transparency: Code for unpacking EV cert hashes whitelist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Avoiding globals in favour of passing the SSLConfigService around Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/ssl/ssl_config.h
diff --git a/net/ssl/ssl_config.h b/net/ssl/ssl_config.h
index 27312147f0f5beff209c1afc2044e2d12d1fbe74..cdf6b45363dfb61798fbd7babb7fc13d7cb48464 100644
--- a/net/ssl/ssl_config.h
+++ b/net/ssl/ssl_config.h
@@ -8,6 +8,7 @@
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "net/base/net_export.h"
+#include "net/cert/ct_ev_whitelist.h"
#include "net/cert/x509_certificate.h"
namespace net {
@@ -149,6 +150,7 @@ struct NET_EXPORT SSLConfig {
std::vector<std::string> next_protos;
scoped_refptr<X509Certificate> client_cert;
+ scoped_refptr<ct::EVCertsWhitelist> ev_certs_whitelist;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698