Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(366)

Side by Side Diff: net/ftp/ftp_network_transaction.cc

Issue 144009: Move socket related files from net/base to net/socket. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/ftp/ftp_network_layer.cc ('k') | net/ftp/ftp_network_transaction_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the 2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file. 3 // LICENSE file.
4 4
5 #include "net/ftp/ftp_network_transaction.h" 5 #include "net/ftp/ftp_network_transaction.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "net/base/client_socket.h"
10 #include "net/base/client_socket_factory.h"
11 #include "net/base/connection_type_histograms.h" 9 #include "net/base/connection_type_histograms.h"
12 #include "net/base/net_errors.h" 10 #include "net/base/net_errors.h"
13 #include "net/ftp/ftp_network_session.h" 11 #include "net/ftp/ftp_network_session.h"
14 #include "net/ftp/ftp_request_info.h" 12 #include "net/ftp/ftp_request_info.h"
13 #include "net/socket/client_socket.h"
14 #include "net/socket/client_socket_factory.h"
15 15
16 // TODO(ibrar): Try to avoid sscanf. 16 // TODO(ibrar): Try to avoid sscanf.
17 #if !defined(COMPILER_MSVC) 17 #if !defined(COMPILER_MSVC)
18 #define sscanf_s sscanf 18 #define sscanf_s sscanf
19 #endif 19 #endif
20 20
21 const char kCRLF[] = "\r\n"; 21 const char kCRLF[] = "\r\n";
22 22
23 const int kCtrlBufLen = 1024; 23 const int kCtrlBufLen = 1024;
24 24
(...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 &io_callback_); 871 &io_callback_);
872 } 872 }
873 873
874 int FtpNetworkTransaction::DoDataReadComplete(int result) { 874 int FtpNetworkTransaction::DoDataReadComplete(int result) {
875 DLOG(INFO) << read_data_buf_->data(); // The read_data_buf_ is NULL 875 DLOG(INFO) << read_data_buf_->data(); // The read_data_buf_ is NULL
876 // terminated string. 876 // terminated string.
877 return result; 877 return result;
878 } 878 }
879 879
880 } // namespace net 880 } // namespace net
OLDNEW
« no previous file with comments | « net/ftp/ftp_network_layer.cc ('k') | net/ftp/ftp_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698