| Index: content/browser/download/download_item_impl_unittest.cc
|
| diff --git a/content/browser/download/download_item_impl_unittest.cc b/content/browser/download/download_item_impl_unittest.cc
|
| index 578688fbb924e53886a37cd96abaff6260f15e15..8d3093ac3690c2425b6363e455cb3dbcbe04e26c 100644
|
| --- a/content/browser/download/download_item_impl_unittest.cc
|
| +++ b/content/browser/download/download_item_impl_unittest.cc
|
| @@ -259,8 +259,9 @@ class DownloadItemTest : public testing::Test {
|
|
|
| DownloadItemImpl* CreateDownloadItemWithCreateInfo(
|
| std::unique_ptr<DownloadCreateInfo> info) {
|
| - DownloadItemImpl* download = new DownloadItemImpl(
|
| - &delegate_, next_download_id_++, *(info.get()), net::BoundNetLog());
|
| + DownloadItemImpl* download =
|
| + new DownloadItemImpl(&delegate_, next_download_id_++, *(info.get()),
|
| + net::NetLogWithSource());
|
| allocated_downloads_.insert(download);
|
| return download;
|
| }
|
| @@ -272,7 +273,7 @@ class DownloadItemTest : public testing::Test {
|
| create_info_->download_id = ++next_download_id_;
|
| DownloadItemImpl* download =
|
| new DownloadItemImpl(&delegate_, create_info_->download_id,
|
| - *create_info_, net::BoundNetLog());
|
| + *create_info_, net::NetLogWithSource());
|
| allocated_downloads_.insert(download);
|
| return download;
|
| }
|
|
|