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

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

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: REBASE 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_file_impl.cc
diff --git a/content/browser/download/download_file_impl.cc b/content/browser/download/download_file_impl.cc
index 96f81f276ae14ef45bed9e9ab02ad8f6cebd8348..62d08a78845e20212f4a3c632122955d8076192c 100644
--- a/content/browser/download/download_file_impl.cc
+++ b/content/browser/download/download_file_impl.cc
@@ -42,11 +42,11 @@ DownloadFileImpl::DownloadFileImpl(
std::unique_ptr<DownloadSaveInfo> save_info,
const base::FilePath& default_download_directory,
std::unique_ptr<ByteStreamReader> stream,
- const net::BoundNetLog& download_item_net_log,
+ const net::NetLogWithSource& download_item_net_log,
base::WeakPtr<DownloadDestinationObserver> observer)
: bound_net_log_(
- net::BoundNetLog::Make(download_item_net_log.net_log(),
- net::NetLogSourceType::DOWNLOAD_FILE)),
+ net::NetLogWithSource::Make(download_item_net_log.net_log(),
+ net::NetLogSourceType::DOWNLOAD_FILE)),
file_(bound_net_log_),
save_info_(std::move(save_info)),
default_download_directory_(default_download_directory),

Powered by Google App Engine
This is Rietveld 408576698