Index: content/browser/download/save_types.h |
diff --git a/content/browser/download/save_types.h b/content/browser/download/save_types.h |
index 68a44c7da2f4f2f773b2d5732945f2effc023cf6..ab3fba9967be622a2b140dc7a755b0005676972b 100644 |
--- a/content/browser/download/save_types.h |
+++ b/content/browser/download/save_types.h |
@@ -14,7 +14,7 @@ |
#include "googleurl/src/gurl.h" |
namespace content { |
-typedef std::vector<std::pair<int, FilePath> > FinalNameList; |
+typedef std::vector<std::pair<int, base::FilePath> > FinalNameList; |
typedef std::vector<int> SaveIDList; |
// This structure is used to handle and deliver some info |
@@ -33,7 +33,7 @@ struct SaveFileCreateInfo { |
SAVE_FILE_FROM_FILE |
}; |
- SaveFileCreateInfo(const FilePath& path, |
+ SaveFileCreateInfo(const base::FilePath& path, |
const GURL& url, |
SaveFileSource save_source, |
int32 save_id); |
@@ -44,7 +44,7 @@ struct SaveFileCreateInfo { |
// SaveItem fields. |
// The local file path of saved file. |
- FilePath path; |
+ base::FilePath path; |
// Original URL of the saved resource. |
GURL url; |
// Final URL of the saved resource since some URL might be redirected. |