summaryrefslogtreecommitdiffstats
path: root/content/browser/download/download_item_factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/download/download_item_factory.h')
-rw-r--r--content/browser/download/download_item_factory.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/content/browser/download/download_item_factory.h b/content/browser/download/download_item_factory.h
index 5922e6e..8104b06 100644
--- a/content/browser/download/download_item_factory.h
+++ b/content/browser/download/download_item_factory.h
@@ -15,9 +15,12 @@
#include "content/public/browser/download_id.h"
#include "content/public/browser/download_item.h"
-class FilePath;
class GURL;
+namespace base {
+class FilePath;
+}
+
namespace net {
class BoundNetLog;
}
@@ -37,7 +40,7 @@ public:
virtual DownloadItemImpl* CreatePersistedItem(
DownloadItemImplDelegate* delegate,
DownloadId download_id,
- const FilePath& path,
+ const base::FilePath& path,
const GURL& url,
const GURL& referrer_url,
const base::Time& start_time,
@@ -55,7 +58,7 @@ public:
virtual DownloadItemImpl* CreateSavePageItem(
DownloadItemImplDelegate* delegate,
- const FilePath& path,
+ const base::FilePath& path,
const GURL& url,
DownloadId download_id,
const std::string& mime_type,