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

Unified Diff: content/browser/download/download_create_info.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_create_info.h ('k') | content/browser/download/download_file_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 08999f7d64bf9688bcd7a0bf084bd1a2f156efff..c3b745f3f54872668a7fbcdb37516be294e977f2 100644
--- a/content/browser/download/download_create_info.cc
+++ b/content/browser/download/download_create_info.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -18,6 +18,7 @@ DownloadCreateInfo::DownloadCreateInfo(
int64 received_bytes,
int64 total_bytes,
int32 state,
+ const net::BoundNetLog& bound_net_log,
bool has_user_gesture,
content::PageTransition transition_type)
: path(path),
@@ -30,7 +31,8 @@ DownloadCreateInfo::DownloadCreateInfo(
has_user_gesture(has_user_gesture),
transition_type(transition_type),
db_handle(0),
- prompt_user_for_save_location(false) {
+ prompt_user_for_save_location(false),
+ request_bound_net_log(bound_net_log) {
}
DownloadCreateInfo::DownloadCreateInfo()
« no previous file with comments | « content/browser/download/download_create_info.h ('k') | content/browser/download/download_file_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698