summaryrefslogtreecommitdiff
path: root/content/browser/download/save_file_manager.h
diff options
context:
space:
mode:
authorTorne (Richard Coles) <torne@google.com>2013-03-28 15:31:22 +0000
committerTorne (Richard Coles) <torne@google.com>2013-03-28 15:31:22 +0000
commit2a99a7e74a7f215066514fe81d2bfa6639d9eddd (patch)
tree7c2d04841fcd599fd83b0f0bb1100e1c89a35bae /content/browser/download/save_file_manager.h
parent61c449bbbb53310a8c041d8cefdd6b01a126cc7e (diff)
downloadchromium_org-2a99a7e74a7f215066514fe81d2bfa6639d9eddd.tar.gz
Merge from Chromium at DEPS revision r190564
This commit was generated by merge_to_master.py. Change-Id: Icadecbce29854b8fa25fd335b2c1949b5ca5d170
Diffstat (limited to 'content/browser/download/save_file_manager.h')
-rw-r--r--content/browser/download/save_file_manager.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/content/browser/download/save_file_manager.h b/content/browser/download/save_file_manager.h
index 73c77117fb..8e3523e696 100644
--- a/content/browser/download/save_file_manager.h
+++ b/content/browser/download/save_file_manager.h
@@ -66,9 +66,11 @@
#include "content/browser/download/save_types.h"
#include "content/common/content_export.h"
-class FilePath;
class GURL;
+namespace base {
+class FilePath;
+}
namespace net {
class IOBuffer;
@@ -99,7 +101,7 @@ class SaveFileManager : public base::RefCountedThreadSafe<SaveFileManager> {
int render_process_host_id,
int render_view_id,
SaveFileCreateInfo::SaveFileSource save_source,
- const FilePath& file_full_path,
+ const base::FilePath& file_full_path,
ResourceContext* context,
SavePackage* save_package);
@@ -121,7 +123,7 @@ class SaveFileManager : public base::RefCountedThreadSafe<SaveFileManager> {
SavePackage* package);
// Helper function for deleting specified file.
- void DeleteDirectoryOrFile(const FilePath& full_path, bool is_dir);
+ void DeleteDirectoryOrFile(const base::FilePath& full_path, bool is_dir);
// Runs on file thread to save a file by copying from file system when
// original url is using file scheme.
@@ -134,7 +136,7 @@ class SaveFileManager : public base::RefCountedThreadSafe<SaveFileManager> {
// final names of successfully saved files.
void RenameAllFiles(
const FinalNameList& final_names,
- const FilePath& resource_dir,
+ const base::FilePath& resource_dir,
int render_process_id,
int render_view_id,
int save_package_id);
@@ -199,7 +201,7 @@ class SaveFileManager : public base::RefCountedThreadSafe<SaveFileManager> {
// Notifications sent from the UI thread and run on the file thread.
// Deletes a specified file on the file thread.
- void OnDeleteDirectoryOrFile(const FilePath& full_path, bool is_dir);
+ void OnDeleteDirectoryOrFile(const base::FilePath& full_path, bool is_dir);
// Notifications sent from the UI thread and run on the IO thread