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

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 parent Created 8 years, 11 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 08999f7d64bf9688bcd7a0bf084bd1a2f156efff..0d11c9a5f005e317edc951703653d4e677c880ff 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& 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),
+ bound_net_log(log) {
}
DownloadCreateInfo::DownloadCreateInfo()

Powered by Google App Engine
This is Rietveld 408576698