Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: content/browser/download/download_item_impl_unittest.cc

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698