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

Unified Diff: net/socket/ssl_client_socket_impl.h

Issue 2040513003: Implement Expect-Staple (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove call to GetSSLInfo 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
Index: net/socket/ssl_client_socket_impl.h
diff --git a/net/socket/ssl_client_socket_impl.h b/net/socket/ssl_client_socket_impl.h
index 5fa33673747417f735365adabc5d4d54601a5853..97c5835b581c2c7fe763f1a904eeac20837d64d8 100644
--- a/net/socket/ssl_client_socket_impl.h
+++ b/net/socket/ssl_client_socket_impl.h
@@ -134,6 +134,8 @@ class SSLClientSocketImpl : public SSLClientSocket {
void DoConnectCallback(int result);
void UpdateServerCert();
void VerifyCT();
+ void CheckOCSP(const X509Certificate& verified_certificate,
+ const X509Certificate& unverified_certificate);
void OnHandshakeIOComplete(int result);
void OnSendComplete(int result);
@@ -370,6 +372,8 @@ class SSLClientSocketImpl : public SSLClientSocket {
// pinning failure. It is a (somewhat) human-readable string.
std::string pinning_failure_log_;
+ std::string ocsp_response_;
+
BoundNetLog net_log_;
base::WeakPtrFactory<SSLClientSocketImpl> weak_factory_;
};

Powered by Google App Engine
This is Rietveld 408576698