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

Unified Diff: content/public/browser/download_manager.h

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, 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
Index: content/public/browser/download_manager.h
diff --git a/content/public/browser/download_manager.h b/content/public/browser/download_manager.h
index 52a5437b9044c8a4a205f06702c475ef9aed3428..6969ef00cd1902ffbb96430a5914b4804e8752c9 100644
--- a/content/public/browser/download_manager.h
+++ b/content/public/browser/download_manager.h
@@ -51,6 +51,10 @@ struct DownloadCreateInfo;
struct DownloadRetrieveInfo;
struct DownloadSaveInfo;
+namespace net {
+class NetLog;
+} // namespace net
+
namespace content {
class BrowserContext;
class DownloadManagerDelegate;
@@ -64,7 +68,8 @@ class CONTENT_EXPORT DownloadManager
virtual ~DownloadManager() {}
static DownloadManager* Create(
- DownloadManagerDelegate* delegate);
+ DownloadManagerDelegate* delegate,
+ net::NetLog* net_log);
// Shutdown the download manager. Must be called before destruction.
virtual void Shutdown() = 0;

Powered by Google App Engine
This is Rietveld 408576698