| Index: net/dns/address_sorter_posix_unittest.cc
|
| diff --git a/net/dns/address_sorter_posix_unittest.cc b/net/dns/address_sorter_posix_unittest.cc
|
| index c45173799579d129c64103d32520cebf0fc1ce38..dc9b847e5dc454181b9a7aa634e1acaa2f6960e5 100644
|
| --- a/net/dns/address_sorter_posix_unittest.cc
|
| +++ b/net/dns/address_sorter_posix_unittest.cc
|
| @@ -11,6 +11,7 @@
|
| #include "net/base/test_completion_callback.h"
|
| #include "net/socket/client_socket_factory.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/gtest/include/gtest/gtest.h"
|
| @@ -110,8 +111,10 @@ class TestSocketFactory : public ClientSocketFactory {
|
| scoped_ptr<ClientSocketHandle>,
|
| const HostPortPair&,
|
| const SSLConfig&,
|
| + SSLHostInfo* ssl_host_info,
|
| const SSLClientSocketContext&) OVERRIDE {
|
| NOTIMPLEMENTED();
|
| + delete ssl_host_info;
|
| return scoped_ptr<SSLClientSocket>();
|
| }
|
| virtual void ClearSSLSessionCache() OVERRIDE {
|
|
|