| Index: net/socket/transport_client_socket_pool_unittest.cc
|
| diff --git a/net/socket/transport_client_socket_pool_unittest.cc b/net/socket/transport_client_socket_pool_unittest.cc
|
| index ff85847979b692231b4b6558722ab78f47136cdc..458e08a307573b5bf957e36188e208078bbcfeca 100644
|
| --- a/net/socket/transport_client_socket_pool_unittest.cc
|
| +++ b/net/socket/transport_client_socket_pool_unittest.cc
|
| @@ -24,6 +24,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 "testing/gtest/include/gtest/gtest.h"
|
|
|
| @@ -403,8 +404,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>();
|
| }
|
|
|
|
|