Index: content/browser/android/url_request_content_job.h |
diff --git a/content/browser/android/url_request_content_job.h b/content/browser/android/url_request_content_job.h |
index 5d3d9336acc44e2f6367bb6e653fa4cd652fb108..78b3ea6b6fc3f83fd1cb1667df9a5d03acb407f8 100644 |
--- a/content/browser/android/url_request_content_job.h |
+++ b/content/browser/android/url_request_content_job.h |
@@ -42,7 +42,7 @@ class CONTENT_EXPORT URLRequestContentJob : public net::URLRequestJob { |
// net::URLRequestJob: |
void Start() override; |
void Kill() override; |
- bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read) override; |
+ int ReadRawData(net::IOBuffer* buf, int buf_size) override; |
bool IsRedirectResponse(GURL* location, int* http_status_code) override; |
bool GetMimeType(std::string* mime_type) const override; |
void SetExtraRequestHeaders(const net::HttpRequestHeaders& headers) override; |
@@ -89,6 +89,7 @@ class CONTENT_EXPORT URLRequestContentJob : public net::URLRequestJob { |
const scoped_refptr<base::TaskRunner> content_task_runner_; |
net::HttpByteRange byte_range_; |
+ net::Error range_parse_result_; |
mmenke
2015/10/27 19:41:07
Include header
xunjieli
2015/10/27 21:24:07
Done.
|
int64 remaining_bytes_; |
bool io_pending_; |