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

Unified Diff: net/socket/socket_test_util.h

Issue 135373002: Added SSLHostInfo. Storing of server host info to our standard disk cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with TOT Created 6 years, 11 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/socket_test_util.h
diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h
index e4f655359de33a388c790a75fd416d63e45dff73..f7a19c61dfc1c461e3c52580fcad0297b067e43c 100644
--- a/net/socket/socket_test_util.h
+++ b/net/socket/socket_test_util.h
@@ -50,6 +50,7 @@ class AsyncSocket;
class MockClientSocket;
class ServerBoundCertService;
class SSLClientSocket;
+class SSLHostInfo;
class StreamSocket;
enum IoMode {
@@ -651,6 +652,7 @@ class MockClientSocketFactory : public ClientSocketFactory {
scoped_ptr<ClientSocketHandle> transport_socket,
const HostPortPair& host_and_port,
const SSLConfig& ssl_config,
+ SSLHostInfo* ssl_host_info,
const SSLClientSocketContext& context) OVERRIDE;
virtual void ClearSSLSessionCache() OVERRIDE;
@@ -923,6 +925,7 @@ class MockSSLClientSocket : public MockClientSocket, public AsyncSocket {
MockSSLClientSocket(scoped_ptr<ClientSocketHandle> transport_socket,
const HostPortPair& host_and_port,
const SSLConfig& ssl_config,
+ SSLHostInfo* ssl_host_info,
SSLSocketDataProvider* socket);
virtual ~MockSSLClientSocket();
@@ -1227,6 +1230,7 @@ class DeterministicMockClientSocketFactory : public ClientSocketFactory {
scoped_ptr<ClientSocketHandle> transport_socket,
const HostPortPair& host_and_port,
const SSLConfig& ssl_config,
+ SSLHostInfo* ssl_host_info,
const SSLClientSocketContext& context) OVERRIDE;
virtual void ClearSSLSessionCache() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698