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

Unified Diff: extensions/browser/api/cast_channel/cast_socket.h

Issue 2082213002: Add CTVerifier and CTPolicyEnforcer to cast channel ssl socket (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-re-comment Created 4 years, 6 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
« no previous file with comments | « no previous file | extensions/browser/api/cast_channel/cast_socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/cast_channel/cast_socket.h
diff --git a/extensions/browser/api/cast_channel/cast_socket.h b/extensions/browser/api/cast_channel/cast_socket.h
index 3f04b207ddb112b4779ab01d1ea4c3db10dbd9c0..ebf1550d14830625ca050878b491ccb50670a98d 100644
--- a/extensions/browser/api/cast_channel/cast_socket.h
+++ b/extensions/browser/api/cast_channel/cast_socket.h
@@ -31,6 +31,8 @@
namespace net {
class AddressList;
class CertVerifier;
+class CTPolicyEnforcer;
+class CTVerifier;
class SSLClientSocket;
class StreamSocket;
class TCPClientSocket;
@@ -306,6 +308,8 @@ class CastSocketImpl : public CastSocket {
// to cancel a cert verification request.
std::unique_ptr<net::CertVerifier> cert_verifier_;
std::unique_ptr<net::TransportSecurityState> transport_security_state_;
+ std::unique_ptr<net::CTVerifier> cert_transparency_verifier_;
+ std::unique_ptr<net::CTPolicyEnforcer> ct_policy_enforcer_;
// Owned ptr to the underlying TCP socket.
std::unique_ptr<net::TCPClientSocket> tcp_socket_;
« no previous file with comments | « no previous file | extensions/browser/api/cast_channel/cast_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698