Index: chrome/browser/chromeos/drive/drive_url_request_job.h |
diff --git a/chrome/browser/chromeos/drive/drive_url_request_job.h b/chrome/browser/chromeos/drive/drive_url_request_job.h |
index 83b2a5977da67ddcbc7f262b640f9c3c48173470..7862e77953495b54cef4de72b0ee43475437c28d 100644 |
--- a/chrome/browser/chromeos/drive/drive_url_request_job.h |
+++ b/chrome/browser/chromeos/drive/drive_url_request_job.h |
@@ -95,10 +95,10 @@ class DriveURLRequestJob : public net::URLRequestJob { |
// stream in a streaming fashion. |
bool ContinueReadFromFile(int* bytes_read); |
void ReadFromFile(); |
- void ReadFileStream(int bytes_to_read); |
+ void ReadFileStream(); |
// Helper callback for handling async responses from FileStream::Open(). |
- void OnFileOpen(int bytes_to_read, int open_result); |
+ void OnFileOpen(int open_result); |
// Helper callback for handling async responses from FileStream::Read(). |
void OnReadFileStream(int bytes_read); |
@@ -127,10 +127,10 @@ class DriveURLRequestJob : public net::URLRequestJob { |
int64 initial_file_size_; |
int64 remaining_bytes_; |
scoped_ptr<net::FileStream> stream_; |
- scoped_refptr<net::IOBuffer> read_buf_; |
- base::StringPiece read_buf_remaining_; |
scoped_ptr<net::HttpResponseInfo> response_info_; |
bool streaming_download_; |
+ scoped_refptr<net::IOBuffer> read_buf_; |
+ base::StringPiece read_buf_remaining_; |
std::string download_buf_; |
base::StringPiece download_buf_remaining_; |