| Index: content/public/browser/download_manager.h
|
| diff --git a/content/public/browser/download_manager.h b/content/public/browser/download_manager.h
|
| index edc7ca66bf7d18c6b820363fba49a7bbc7aa4752..9214cfaf39af1c1ae73664c166a10b851223e251 100644
|
| --- a/content/public/browser/download_manager.h
|
| +++ b/content/public/browser/download_manager.h
|
| @@ -141,14 +141,16 @@ class CONTENT_EXPORT DownloadManager
|
| // Called by the embedder, after creating the download manager, to let it know
|
| // about downloads from previous runs of the browser.
|
| virtual DownloadItem* CreateDownloadItem(
|
| - const FilePath& path,
|
| - const GURL& url,
|
| + const FilePath& current_path,
|
| + const FilePath& target_path,
|
| + const std::vector<GURL>& url_chain,
|
| const GURL& referrer_url,
|
| const base::Time& start_time,
|
| const base::Time& end_time,
|
| int64 received_bytes,
|
| int64 total_bytes,
|
| DownloadItem::DownloadState state,
|
| + DownloadInterruptReason interrupt_reason,
|
| bool opened) = 0;
|
|
|
| // The number of in progress (including paused) downloads.
|
|
|