summaryrefslogtreecommitdiff
path: root/content/browser/download/download_item_factory.h
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2013-07-17 14:55:54 +0100
committerBen Murdoch <benm@google.com>2013-07-17 14:55:54 +0100
commit7dbb3d5cf0c15f500944d211057644d6a2f37371 (patch)
tree701119ba0596f51b0ab466d6472b0f98211359c5 /content/browser/download/download_item_factory.h
parentb2ecf4836a0eb284ddac7746b1f7ba613777a739 (diff)
downloadchromium_org-7dbb3d5cf0c15f500944d211057644d6a2f37371.tar.gz
Merge from Chromium at DEPS revision r212014
This commit was generated by merge_to_master.py. Change-Id: Ie0f261e9682cd8abea1eea1e51beab83d5eea21a
Diffstat (limited to 'content/browser/download/download_item_factory.h')
-rw-r--r--content/browser/download/download_item_factory.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/content/browser/download/download_item_factory.h b/content/browser/download/download_item_factory.h
index dfc15ec162..36197d5e57 100644
--- a/content/browser/download/download_item_factory.h
+++ b/content/browser/download/download_item_factory.h
@@ -13,7 +13,6 @@
#include <vector>
#include "base/memory/scoped_ptr.h"
-#include "content/public/browser/download_id.h"
#include "content/public/browser/download_item.h"
class GURL;
@@ -40,7 +39,7 @@ public:
virtual DownloadItemImpl* CreatePersistedItem(
DownloadItemImplDelegate* delegate,
- DownloadId download_id,
+ uint32 download_id,
const base::FilePath& current_path,
const base::FilePath& target_path,
const std::vector<GURL>& url_chain,
@@ -57,13 +56,13 @@ public:
virtual DownloadItemImpl* CreateActiveItem(
DownloadItemImplDelegate* delegate,
- DownloadId download_id,
+ uint32 download_id,
const DownloadCreateInfo& info,
const net::BoundNetLog& bound_net_log) = 0;
virtual DownloadItemImpl* CreateSavePageItem(
DownloadItemImplDelegate* delegate,
- DownloadId download_id,
+ uint32 download_id,
const base::FilePath& path,
const GURL& url,
const std::string& mime_type,