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

Unified Diff: content/browser/download/base_file.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/base_file.h
diff --git a/content/browser/download/base_file.h b/content/browser/download/base_file.h
index ec8d90921bdc9473082115a9ae73f1d72018d41d..71c58665a0820dbf55ac80bc95cab00b19dffd30 100644
--- a/content/browser/download/base_file.h
+++ b/content/browser/download/base_file.h
@@ -36,7 +36,7 @@ class CONTENT_EXPORT BaseFile {
public:
// May be constructed on any thread. All other routines (including
// destruction) must occur on the FILE thread.
- BaseFile(const net::BoundNetLog& bound_net_log);
+ BaseFile(const net::NetLogWithSource& net_log);
~BaseFile();
// Returns DOWNLOAD_INTERRUPT_REASON_NONE on success, or a
@@ -223,7 +223,7 @@ class CONTENT_EXPORT BaseFile {
// won't delete it on destruction.
bool detached_ = false;
- net::BoundNetLog bound_net_log_;
+ net::NetLogWithSource net_log_;
DISALLOW_COPY_AND_ASSIGN(BaseFile);
};

Powered by Google App Engine
This is Rietveld 408576698