| Index: net/url_request/url_fetcher_impl.cc
|
| diff --git a/net/url_request/url_fetcher_impl.cc b/net/url_request/url_fetcher_impl.cc
|
| index d4264b4419a3a78d2d5bcc1ae12e9bb75ae90a19..fd24d98460d4c7b354dc3d27862c806d90c5c5a2 100644
|
| --- a/net/url_request/url_fetcher_impl.cc
|
| +++ b/net/url_request/url_fetcher_impl.cc
|
| @@ -31,8 +31,14 @@ void URLFetcherImpl::SetUploadData(const std::string& upload_content_type,
|
| void URLFetcherImpl::SetUploadFilePath(
|
| const std::string& upload_content_type,
|
| const base::FilePath& file_path,
|
| + uint64 range_offset,
|
| + uint64 range_length,
|
| scoped_refptr<base::TaskRunner> file_task_runner) {
|
| - core_->SetUploadFilePath(upload_content_type, file_path, file_task_runner);
|
| + core_->SetUploadFilePath(upload_content_type,
|
| + file_path,
|
| + range_offset,
|
| + range_length,
|
| + file_task_runner);
|
| }
|
|
|
| void URLFetcherImpl::SetChunkedUpload(const std::string& content_type) {
|
|
|