Chromium Code Reviews| 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..6f09cc32fdcda47b5b03597a51789ef1eefeca15 100644 |
| --- a/net/dns/address_sorter_posix_unittest.cc |
| +++ b/net/dns/address_sorter_posix_unittest.cc |
| @@ -9,8 +9,10 @@ |
| #include "net/base/net_errors.h" |
| #include "net/base/net_util.h" |
| #include "net/base/test_completion_callback.h" |
| +#include "net/cert/x509_certificate.h" |
|
wtc
2014/01/18 01:02:01
Is it necessary to add this header?
ramant (doing other things)
2014/01/18 01:28:53
ssl_host_info.h did a forward declaration of X509C
|
| #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 +112,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 { |