| 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);
|
| };
|
|
|