| Index: content/browser/download/download_item_impl.h
|
| diff --git a/content/browser/download/download_item_impl.h b/content/browser/download/download_item_impl.h
|
| index abf382ed7f4e7c2f42c8e491ecfc553aeee4d8c6..b24de53a1de90932bcdb6364252ca4d710dc4e3c 100644
|
| --- a/content/browser/download/download_item_impl.h
|
| +++ b/content/browser/download/download_item_impl.h
|
| @@ -74,14 +74,14 @@ class CONTENT_EXPORT DownloadItemImpl
|
| DownloadDangerType danger_type,
|
| DownloadInterruptReason interrupt_reason,
|
| bool opened,
|
| - const net::BoundNetLog& bound_net_log);
|
| + const net::NetLogWithSource& bound_net_log);
|
|
|
| // Constructing for a regular download.
|
| // |bound_net_log| is constructed externally for our use.
|
| DownloadItemImpl(DownloadItemImplDelegate* delegate,
|
| uint32_t id,
|
| const DownloadCreateInfo& info,
|
| - const net::BoundNetLog& bound_net_log);
|
| + const net::NetLogWithSource& bound_net_log);
|
|
|
| // Constructing for the "Save Page As..." feature:
|
| // |bound_net_log| is constructed externally for our use.
|
| @@ -92,7 +92,7 @@ class CONTENT_EXPORT DownloadItemImpl
|
| const GURL& url,
|
| const std::string& mime_type,
|
| std::unique_ptr<DownloadRequestHandleInterface> request_handle,
|
| - const net::BoundNetLog& bound_net_log);
|
| + const net::NetLogWithSource& bound_net_log);
|
|
|
| ~DownloadItemImpl() override;
|
|
|
| @@ -201,8 +201,8 @@ class CONTENT_EXPORT DownloadItemImpl
|
| virtual base::WeakPtr<DownloadDestinationObserver>
|
| DestinationObserverAsWeakPtr();
|
|
|
| - // Get the download's BoundNetLog.
|
| - virtual const net::BoundNetLog& GetBoundNetLog() const;
|
| + // Get the download's NetLogWithSource.
|
| + virtual const net::NetLogWithSource& GetNetLogWithSource() const;
|
|
|
| // DownloadItemImpl routines only needed by SavePackage ----------------------
|
|
|
| @@ -674,7 +674,7 @@ class CONTENT_EXPORT DownloadItemImpl
|
| std::string etag_;
|
|
|
| // Net log to use for this download.
|
| - const net::BoundNetLog bound_net_log_;
|
| + const net::NetLogWithSource bound_net_log_;
|
|
|
| base::WeakPtrFactory<DownloadItemImpl> weak_ptr_factory_;
|
|
|
|
|