Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/download/download_file_factory.h" | 5 #include "content/browser/download/download_file_factory.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "content/browser/download/download_file_impl.h" | 9 #include "content/browser/download/download_file_impl.h" |
| 10 | 10 |
| 11 namespace content { | 11 namespace content { |
| 12 | 12 |
| 13 DownloadFileFactory::~DownloadFileFactory() {} | 13 DownloadFileFactory::~DownloadFileFactory() {} |
| 14 | 14 |
| 15 DownloadFile* DownloadFileFactory::CreateFile( | 15 DownloadFile* DownloadFileFactory::CreateFile( |
| 16 std::unique_ptr<DownloadSaveInfo> save_info, | 16 std::unique_ptr<DownloadSaveInfo> save_info, |
| 17 const base::FilePath& default_downloads_directory, | 17 const base::FilePath& default_downloads_directory, |
| 18 std::unique_ptr<ByteStreamReader> byte_stream, | 18 std::unique_ptr<ByteStreamReader> byte_stream, |
| 19 const net::NetLogWithSource& net_log, | 19 const net::NetLogWithSource& net_log, |
| 20 base::WeakPtr<DownloadDestinationObserver> observer) { | 20 base::WeakPtr<DownloadDestinationObserver> observer) { |
| 21 return new DownloadFileImpl(std::move(save_info), | 21 return new DownloadFileImpl(std::move(save_info), default_downloads_directory, |
| 22 default_downloads_directory, | 22 std::move(byte_stream), net_log, false, observer); |
|
David Trainor- moved to gerrit
2017/03/02 18:24:50
Maybe add /* is_sparse_file */ to false to make it
xingliu
2017/03/02 19:21:20
Done.
| |
| 23 std::move(byte_stream), | |
| 24 net_log, | |
| 25 observer); | |
| 26 } | 23 } |
| 27 | 24 |
| 28 } // namespace content | 25 } // namespace content |
| OLD | NEW |