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

Unified Diff: content/browser/download/download_item_factory.h

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ 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_item_factory.h
diff --git a/content/browser/download/download_item_factory.h b/content/browser/download/download_item_factory.h
index e25e462f45b8c79a4124235ff7780130ce3d56cf..ae069f3601ccf0624a3aa8b4748ca8c71a3b4ec2 100644
--- a/content/browser/download/download_item_factory.h
+++ b/content/browser/download/download_item_factory.h
@@ -24,7 +24,7 @@ class FilePath;
}
namespace net {
-class BoundNetLog;
+class NetLogWithSource;
}
namespace content {
@@ -63,13 +63,13 @@ public:
DownloadDangerType danger_type,
DownloadInterruptReason interrupt_reason,
bool opened,
- const net::BoundNetLog& bound_net_log) = 0;
+ const net::NetLogWithSource& net_log) = 0;
virtual DownloadItemImpl* CreateActiveItem(
DownloadItemImplDelegate* delegate,
uint32_t download_id,
const DownloadCreateInfo& info,
- const net::BoundNetLog& bound_net_log) = 0;
+ const net::NetLogWithSource& net_log) = 0;
virtual DownloadItemImpl* CreateSavePageItem(
DownloadItemImplDelegate* delegate,
@@ -78,7 +78,7 @@ public:
const GURL& url,
const std::string& mime_type,
std::unique_ptr<DownloadRequestHandleInterface> request_handle,
- const net::BoundNetLog& bound_net_log) = 0;
+ const net::NetLogWithSource& net_log) = 0;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698