diff options
Diffstat (limited to 'net/url_request/url_fetcher_impl.cc')
-rw-r--r-- | net/url_request/url_fetcher_impl.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/url_request/url_fetcher_impl.cc b/net/url_request/url_fetcher_impl.cc index d4264b4..fd24d98 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) { |