diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-14 00:44:39 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-14 00:44:39 +0000 |
commit | e4be2dd25b1883bad7bed358e52e04f01c6e6f78 (patch) | |
tree | 842b39b7ea3547a97e07e2d4dcbb4795020c435c /net/url_request | |
parent | 6415176be8ad6b36d4adafa1c8e76aa89c5ca17c (diff) | |
download | chromium_src-e4be2dd25b1883bad7bed358e52e04f01c6e6f78.zip chromium_src-e4be2dd25b1883bad7bed358e52e04f01c6e6f78.tar.gz chromium_src-e4be2dd25b1883bad7bed358e52e04f01c6e6f78.tar.bz2 |
Deinline even more destructors.
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/5794003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69084 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request')
-rw-r--r-- | net/url_request/url_request_ftp_job.cc | 4 | ||||
-rw-r--r-- | net/url_request/url_request_ftp_job.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/net/url_request/url_request_ftp_job.cc b/net/url_request/url_request_ftp_job.cc index 6eb09e0..ea9b23c 100644 --- a/net/url_request/url_request_ftp_job.cc +++ b/net/url_request/url_request_ftp_job.cc @@ -121,6 +121,10 @@ void URLRequestFtpJob::CancelAuth() { &URLRequestFtpJob::OnStartCompleted, OK)); } +uint64 URLRequestFtpJob::GetUploadProgress() const { + return 0; +} + bool URLRequestFtpJob::ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read) { diff --git a/net/url_request/url_request_ftp_job.h b/net/url_request/url_request_ftp_job.h index 58d0efb..d503766 100644 --- a/net/url_request/url_request_ftp_job.h +++ b/net/url_request/url_request_ftp_job.h @@ -48,7 +48,7 @@ class URLRequestFtpJob : public URLRequestJob { virtual void CancelAuth(); // TODO(ibrar): Yet to give another look at this function. - virtual uint64 GetUploadProgress() const { return 0; } + virtual uint64 GetUploadProgress() const; virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read); void StartTransaction(); |