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

Unified Diff: extensions/browser/api/socket/tls_socket.h

Issue 2067843003: Require a CTVerifier and CTPolicyEnforcer for TLS/QUIC sockets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixup 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 | « extensions/browser/api/socket/socket_api.cc ('k') | extensions/browser/api/socket/tls_socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/socket/tls_socket.h
diff --git a/extensions/browser/api/socket/tls_socket.h b/extensions/browser/api/socket/tls_socket.h
index 2f7a683efb46343a724b75620e1128d233777681..61825343193e7f607325176abb9b0d261e4b7ef3 100644
--- a/extensions/browser/api/socket/tls_socket.h
+++ b/extensions/browser/api/socket/tls_socket.h
@@ -17,6 +17,8 @@
namespace net {
class Socket;
class CertVerifier;
+class CTPolicyEnforcer;
+class CTVerifier;
class TransportSecurityState;
}
@@ -98,6 +100,8 @@ class TLSSocket : public ResumableTCPSocket {
scoped_refptr<net::SSLConfigService> config_service,
net::CertVerifier* cert_verifier,
net::TransportSecurityState* transport_security_state,
+ net::CTVerifier* ct_verifier,
+ net::CTPolicyEnforcer* ct_policy_enforcer,
const std::string& extension_id,
api::socket::SecureOptions* options,
const SecureCallback& callback);
« no previous file with comments | « extensions/browser/api/socket/socket_api.cc ('k') | extensions/browser/api/socket/tls_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698