| OLD | NEW |
| 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/logging.h" |
| 8 #include "net/base/client_socket.h" | 9 #include "net/base/client_socket.h" |
| 9 #include "net/base/net_errors.h" | 10 #include "net/base/net_errors.h" |
| 10 #include "net/ftp/ftp_network_session.h" | 11 #include "net/ftp/ftp_network_session.h" |
| 11 | 12 |
| 12 namespace net { | 13 namespace net { |
| 13 | 14 |
| 14 FtpNetworkTransaction::FtpNetworkTransaction( | 15 FtpNetworkTransaction::FtpNetworkTransaction( |
| 15 FtpNetworkSession* session, ClientSocketFactory* socket_factory) | 16 FtpNetworkSession* session, ClientSocketFactory* socket_factory) |
| 16 : ALLOW_THIS_IN_INITIALIZER_LIST(io_callback_(this, | 17 : ALLOW_THIS_IN_INITIALIZER_LIST(io_callback_(this, |
| 17 &FtpNetworkTransaction::OnIOComplete)), | 18 &FtpNetworkTransaction::OnIOComplete)), |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 196 |
| 196 int FtpNetworkTransaction::DoDataRead() { | 197 int FtpNetworkTransaction::DoDataRead() { |
| 197 return ERR_FAILED; // TODO(darin): implement me | 198 return ERR_FAILED; // TODO(darin): implement me |
| 198 } | 199 } |
| 199 | 200 |
| 200 int FtpNetworkTransaction::DoDataReadComplete(int result) { | 201 int FtpNetworkTransaction::DoDataReadComplete(int result) { |
| 201 return ERR_FAILED; // TODO(darin): implement me | 202 return ERR_FAILED; // TODO(darin): implement me |
| 202 } | 203 } |
| 203 | 204 |
| 204 } // namespace net | 205 } // namespace net |
| OLD | NEW |