summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/isolated_mount_point_provider.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/fileapi/isolated_mount_point_provider.h')
-rw-r--r--webkit/fileapi/isolated_mount_point_provider.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/fileapi/isolated_mount_point_provider.h b/webkit/fileapi/isolated_mount_point_provider.h
index 5c89f11..64f82a6 100644
--- a/webkit/fileapi/isolated_mount_point_provider.h
+++ b/webkit/fileapi/isolated_mount_point_provider.h
@@ -17,7 +17,7 @@ class MediaPathFilter;
class IsolatedMountPointProvider : public FileSystemMountPointProvider {
public:
- explicit IsolatedMountPointProvider(const FilePath& profile_path);
+ explicit IsolatedMountPointProvider(const base::FilePath& profile_path);
virtual ~IsolatedMountPointProvider();
// FileSystemMountPointProvider implementation.
@@ -26,11 +26,11 @@ class IsolatedMountPointProvider : public FileSystemMountPointProvider {
FileSystemType type,
bool create,
const ValidateFileSystemCallback& callback) OVERRIDE;
- virtual FilePath GetFileSystemRootPathOnFileThread(
+ virtual base::FilePath GetFileSystemRootPathOnFileThread(
const FileSystemURL& url,
bool create) OVERRIDE;
virtual bool IsAccessAllowed(const FileSystemURL& url) OVERRIDE;
- virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE;
+ virtual bool IsRestrictedFileName(const base::FilePath& filename) const OVERRIDE;
virtual FileSystemFileUtil* GetFileUtil(FileSystemType type) OVERRIDE;
virtual AsyncFileUtil* GetAsyncFileUtil(FileSystemType type) OVERRIDE;
virtual FilePermissionPolicy GetPermissionPolicy(
@@ -58,7 +58,7 @@ class IsolatedMountPointProvider : public FileSystemMountPointProvider {
private:
// Store the profile path. We need this to create temporary snapshot files.
- const FilePath profile_path_;
+ const base::FilePath profile_path_;
scoped_ptr<MediaPathFilter> media_path_filter_;