| Index: content/browser/download/download_file_factory.cc
|
| diff --git a/content/browser/download/download_file_factory.cc b/content/browser/download/download_file_factory.cc
|
| index a723c18e89ebc24c3318d9abf90cc9b64d0df187..0ed87d80ca613d8a7e06c007d20f604d3f6e76c4 100644
|
| --- a/content/browser/download/download_file_factory.cc
|
| +++ b/content/browser/download/download_file_factory.cc
|
| @@ -16,10 +16,11 @@ DownloadFile* DownloadFileFactory::CreateFile(
|
| std::unique_ptr<DownloadSaveInfo> save_info,
|
| const base::FilePath& default_downloads_directory,
|
| std::unique_ptr<ByteStreamReader> byte_stream,
|
| + const std::vector<DownloadItem::ReceivedSlice>& received_slices,
|
| const net::NetLogWithSource& net_log,
|
| base::WeakPtr<DownloadDestinationObserver> observer) {
|
| return new DownloadFileImpl(std::move(save_info), default_downloads_directory,
|
| - std::move(byte_stream), net_log,
|
| + std::move(byte_stream), received_slices, net_log,
|
| false, /* is_sparse_file */
|
| observer);
|
| }
|
|
|