| 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 5922e6ebb3f885fab9522f5d5667b6f29c5642e1..fe4619ddab1873a50707f9a30e0038f388644903 100644 | 
| --- a/content/browser/download/download_item_factory.h | 
| +++ b/content/browser/download/download_item_factory.h | 
| @@ -10,6 +10,7 @@ | 
| #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_FACTORY_H_ | 
|  | 
| #include <string> | 
| +#include <vector> | 
|  | 
| #include "base/memory/scoped_ptr.h" | 
| #include "content/public/browser/download_id.h" | 
| @@ -37,14 +38,17 @@ public: | 
| virtual DownloadItemImpl* CreatePersistedItem( | 
| DownloadItemImplDelegate* delegate, | 
| DownloadId download_id, | 
| -      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, | 
| -      content::DownloadItem::DownloadState state, | 
| +      DownloadItem::DownloadState state, | 
| +      DownloadDangerType danger_type, | 
| +      DownloadInterruptReason interrupt_reason, | 
| bool opened, | 
| const net::BoundNetLog& bound_net_log) = 0; | 
|  | 
|  |