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

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

Issue 9296012: Hooked up NetLog to DownloadItem, DownloadFile, and FileStream. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with trunk Created 8 years, 10 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
« no previous file with comments | « content/browser/download/download_file_impl.h ('k') | content/browser/download/download_file_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 40ba759620f008d034c943f59216043bc3e7c866..5fb7ffc330bed912ce0dd68bdc46db65fbc2e36f 100644
--- a/content/browser/download/download_file_impl.cc
+++ b/content/browser/download/download_file_impl.cc
@@ -19,7 +19,8 @@ DownloadFileImpl::DownloadFileImpl(
const DownloadCreateInfo* info,
DownloadRequestHandleInterface* request_handle,
DownloadManager* download_manager,
- bool calculate_hash)
+ bool calculate_hash,
+ const net::BoundNetLog& bound_net_log)
: file_(info->save_info.file_path,
info->url(),
info->referrer_url,
@@ -27,7 +28,7 @@ DownloadFileImpl::DownloadFileImpl(
calculate_hash,
info->save_info.hash_state,
info->save_info.file_stream,
- net::BoundNetLog()),
+ bound_net_log),
id_(info->download_id),
request_handle_(request_handle),
download_manager_(download_manager) {
« no previous file with comments | « content/browser/download/download_file_impl.h ('k') | content/browser/download/download_file_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698