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

Side by Side Diff: net/url_request/url_request_new_ftp_job.cc

Issue 56043: Use HTTP status return code to make SDCH handling more robust... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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/url_request/url_request_new_ftp_job.h ('k') | no next file » | 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) 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
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
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 }
OLDNEW
« no previous file with comments | « net/url_request/url_request_new_ftp_job.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698