| 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 500f491fbdfd1ce1d4fd7708549fac7b9d8fa6ac..5b33b800245cd02ad84215201a9c1f0407bfe402 100644
|
| --- a/content/browser/download/download_item_factory.h
|
| +++ b/content/browser/download/download_item_factory.h
|
| @@ -13,6 +13,7 @@
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| #include "content/public/browser/download_id.h"
|
| +#include "content/public/browser/download_item.h"
|
|
|
| class FilePath;
|
| class GURL;
|
| @@ -37,7 +38,15 @@ public:
|
| virtual DownloadItemImpl* CreatePersistedItem(
|
| DownloadItemImplDelegate* delegate,
|
| DownloadId download_id,
|
| - const DownloadPersistentStoreInfo& info,
|
| + const FilePath& path,
|
| + const GURL& url,
|
| + const GURL& referrer_url,
|
| + const base::Time& start_time,
|
| + const base::Time& end_time,
|
| + int64 received_bytes,
|
| + int64 total_bytes,
|
| + content::DownloadItem::DownloadState state,
|
| + bool opened,
|
| const net::BoundNetLog& bound_net_log) = 0;
|
|
|
| virtual DownloadItemImpl* CreateActiveItem(
|
|
|