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

Unified Diff: content/browser/download/download_create_info.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_create_info.cc
diff --git a/content/browser/download/download_create_info.cc b/content/browser/download/download_create_info.cc
index cbfb20c4b726d11bddd3400e70a277e09f0b6d50..c98fd2bab6d4d18495655a2b1738342f77ea631d 100644
--- a/content/browser/download/download_create_info.cc
+++ b/content/browser/download/download_create_info.cc
@@ -14,7 +14,7 @@ namespace content {
DownloadCreateInfo::DownloadCreateInfo(
const base::Time& start_time,
- const net::BoundNetLog& bound_net_log,
+ const net::NetLogWithSource& net_log,
std::unique_ptr<DownloadSaveInfo> save_info)
: download_id(DownloadItem::kInvalidId),
start_time(start_time),
@@ -23,11 +23,11 @@ DownloadCreateInfo::DownloadCreateInfo(
transition_type(ui::PAGE_TRANSITION_LINK),
result(DOWNLOAD_INTERRUPT_REASON_NONE),
save_info(std::move(save_info)),
- request_bound_net_log(bound_net_log) {}
+ request_net_log(net_log) {}
DownloadCreateInfo::DownloadCreateInfo()
: DownloadCreateInfo(base::Time(),
- net::BoundNetLog(),
+ net::NetLogWithSource(),
base::WrapUnique(new DownloadSaveInfo)) {}
DownloadCreateInfo::~DownloadCreateInfo() {}

Powered by Google App Engine
This is Rietveld 408576698