diff options
Diffstat (limited to 'net/socket/socket_test_util.cc')
-rw-r--r-- | net/socket/socket_test_util.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/socket/socket_test_util.cc b/net/socket/socket_test_util.cc index dc89546..7e298b5 100644 --- a/net/socket/socket_test_util.cc +++ b/net/socket/socket_test_util.cc @@ -604,6 +604,9 @@ SSLClientSocket* MockClientSocketFactory::CreateSSLClientSocket( return socket; } +void MockClientSocketFactory::ClearSSLSessionCache() { +} + MockClientSocket::MockClientSocket(net::NetLog* net_log) : ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)), connected_(false), @@ -1304,6 +1307,9 @@ SSLClientSocket* DeterministicMockClientSocketFactory::CreateSSLClientSocket( return socket; } +void DeterministicMockClientSocketFactory::ClearSSLSessionCache() { +} + MockSOCKSClientSocketPool::MockSOCKSClientSocketPool( int max_sockets, int max_sockets_per_group, |