diff options
Diffstat (limited to 'net/ftp')
-rw-r--r-- | net/ftp/ftp_network_layer.cc | 2 | ||||
-rw-r--r-- | net/ftp/ftp_network_transaction.cc | 4 | ||||
-rw-r--r-- | net/ftp/ftp_network_transaction_unittest.cc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/net/ftp/ftp_network_layer.cc b/net/ftp/ftp_network_layer.cc index fa0e87c..df53a09 100644 --- a/net/ftp/ftp_network_layer.cc +++ b/net/ftp/ftp_network_layer.cc @@ -4,9 +4,9 @@ #include "net/ftp/ftp_network_layer.h" -#include "net/base/client_socket_factory.h" #include "net/ftp/ftp_network_session.h" #include "net/ftp/ftp_network_transaction.h" +#include "net/socket/client_socket_factory.h" namespace net { diff --git a/net/ftp/ftp_network_transaction.cc b/net/ftp/ftp_network_transaction.cc index 6c71582..87c3e16 100644 --- a/net/ftp/ftp_network_transaction.cc +++ b/net/ftp/ftp_network_transaction.cc @@ -6,12 +6,12 @@ #include "base/compiler_specific.h" #include "base/string_util.h" -#include "net/base/client_socket.h" -#include "net/base/client_socket_factory.h" #include "net/base/connection_type_histograms.h" #include "net/base/net_errors.h" #include "net/ftp/ftp_network_session.h" #include "net/ftp/ftp_request_info.h" +#include "net/socket/client_socket.h" +#include "net/socket/client_socket_factory.h" // TODO(ibrar): Try to avoid sscanf. #if !defined(COMPILER_MSVC) diff --git a/net/ftp/ftp_network_transaction_unittest.cc b/net/ftp/ftp_network_transaction_unittest.cc index 2044b1d..b45156b 100644 --- a/net/ftp/ftp_network_transaction_unittest.cc +++ b/net/ftp/ftp_network_transaction_unittest.cc @@ -8,10 +8,10 @@ #include "net/base/host_resolver.h" #include "net/base/host_resolver_unittest.h" #include "net/base/io_buffer.h" -#include "net/base/socket_test_util.h" #include "net/base/test_completion_callback.h" #include "net/ftp/ftp_network_session.h" #include "net/ftp/ftp_request_info.h" +#include "net/socket/socket_test_util.h" #include "testing/gtest/include/gtest/gtest.h" #include "testing/platform_test.h" |