| Index: net/socket/client_socket_pool_base_unittest.cc
|
| diff --git a/net/socket/client_socket_pool_base_unittest.cc b/net/socket/client_socket_pool_base_unittest.cc
|
| index 46f4e40c0d453e72aea9858a166bccb33f0ed0d4..3b6be77b089f585e76840ab053314d8ce75907d6 100644
|
| --- a/net/socket/client_socket_pool_base_unittest.cc
|
| +++ b/net/socket/client_socket_pool_base_unittest.cc
|
| @@ -31,6 +31,7 @@
|
| #include "net/socket/client_socket_pool_histograms.h"
|
| #include "net/socket/socket_test_util.h"
|
| #include "net/socket/ssl_client_socket.h"
|
| +#include "net/socket/ssl_host_info.h"
|
| #include "net/socket/stream_socket.h"
|
| #include "net/udp/datagram_client_socket.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| @@ -209,8 +210,10 @@ 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 {
|
| NOTIMPLEMENTED();
|
| + delete ssl_host_info;
|
| return scoped_ptr<SSLClientSocket>();
|
| }
|
|
|
|
|