| Index: net/dns/dns_session_unittest.cc
|
| diff --git a/net/dns/dns_session_unittest.cc b/net/dns/dns_session_unittest.cc
|
| index ed726f23234963f59f3532e05c42ab45345895d9..0f3073e682e945c768e2fd63ef7ad5b6677347b5 100644
|
| --- a/net/dns/dns_session_unittest.cc
|
| +++ b/net/dns/dns_session_unittest.cc
|
| @@ -15,6 +15,7 @@
|
| #include "net/dns/dns_socket_pool.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"
|
|
|
| @@ -43,8 +44,10 @@ class TestClientSocketFactory : 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>();
|
| }
|
|
|
|
|