| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/url_request/url_request_new_ftp_job.h" | 5 #include "net/url_request/url_request_new_ftp_job.h" |
| 6 | 6 |
| 7 #include "base/file_version_info.h" | 7 #include "base/file_version_info.h" |
| 8 #include "net/base/net_util.h" | 8 #include "net/base/net_util.h" |
| 9 #include "net/url_request/url_request.h" | 9 #include "net/url_request/url_request.h" |
| 10 #include "net/url_request/url_request_context.h" | 10 #include "net/url_request/url_request_context.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 uint64 URLRequestNewFtpJob::GetUploadProgress() const { | 50 uint64 URLRequestNewFtpJob::GetUploadProgress() const { |
| 51 NOTIMPLEMENTED(); | 51 NOTIMPLEMENTED(); |
| 52 return 0; | 52 return 0; |
| 53 } | 53 } |
| 54 | 54 |
| 55 void URLRequestNewFtpJob::GetResponseInfo() { | 55 void URLRequestNewFtpJob::GetResponseInfo() { |
| 56 NOTIMPLEMENTED(); | 56 NOTIMPLEMENTED(); |
| 57 } | 57 } |
| 58 | 58 |
| 59 int URLRequestNewFtpJob::GetResponseCode() { | 59 int URLRequestNewFtpJob::GetResponseCode() const { |
| 60 NOTIMPLEMENTED(); | 60 NOTIMPLEMENTED(); |
| 61 return -1; | 61 return -1; |
| 62 } | 62 } |
| 63 | 63 |
| 64 bool URLRequestNewFtpJob::GetMoreData() { | 64 bool URLRequestNewFtpJob::GetMoreData() { |
| 65 NOTIMPLEMENTED(); | 65 NOTIMPLEMENTED(); |
| 66 return false; | 66 return false; |
| 67 } | 67 } |
| 68 | 68 |
| 69 bool URLRequestNewFtpJob::ReadRawData(net::IOBuffer* buf, | 69 bool URLRequestNewFtpJob::ReadRawData(net::IOBuffer* buf, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 81 NOTIMPLEMENTED(); | 81 NOTIMPLEMENTED(); |
| 82 } | 82 } |
| 83 | 83 |
| 84 void URLRequestNewFtpJob::DestroyTransaction() { | 84 void URLRequestNewFtpJob::DestroyTransaction() { |
| 85 NOTIMPLEMENTED(); | 85 NOTIMPLEMENTED(); |
| 86 } | 86 } |
| 87 | 87 |
| 88 void URLRequestNewFtpJob::StartTransaction() { | 88 void URLRequestNewFtpJob::StartTransaction() { |
| 89 NOTIMPLEMENTED(); | 89 NOTIMPLEMENTED(); |
| 90 } | 90 } |
| OLD | NEW |