| Index: webkit/fileapi/local_file_util.h
|
| diff --git a/webkit/fileapi/local_file_util.h b/webkit/fileapi/local_file_util.h
|
| index bbe51f18c5b53d566973457f3901f685db822861..7f19a687f69be69dbd44061c9b106f918c7d3140 100644
|
| --- a/webkit/fileapi/local_file_util.h
|
| +++ b/webkit/fileapi/local_file_util.h
|
| @@ -12,10 +12,10 @@
|
| #include "webkit/storage/webkit_storage_export.h"
|
|
|
| namespace base {
|
| +class FilePath;
|
| class Time;
|
| }
|
|
|
| -class FilePath;
|
| class GURL;
|
|
|
| namespace fileapi {
|
| @@ -50,7 +50,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE LocalFileUtil : public FileSystemFileUtil {
|
| FileSystemOperationContext* context,
|
| const FileSystemURL& url,
|
| base::PlatformFileInfo* file_info,
|
| - FilePath* platform_file) OVERRIDE;
|
| + base::FilePath* platform_file) OVERRIDE;
|
| virtual scoped_ptr<AbstractFileEnumerator> CreateFileEnumerator(
|
| FileSystemOperationContext* context,
|
| const FileSystemURL& root_url,
|
| @@ -58,7 +58,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE LocalFileUtil : public FileSystemFileUtil {
|
| virtual base::PlatformFileError GetLocalFilePath(
|
| FileSystemOperationContext* context,
|
| const FileSystemURL& file_system_url,
|
| - FilePath* local_file_path) OVERRIDE;
|
| + base::FilePath* local_file_path) OVERRIDE;
|
| virtual base::PlatformFileError Touch(
|
| FileSystemOperationContext* context,
|
| const FileSystemURL& url,
|
| @@ -75,7 +75,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE LocalFileUtil : public FileSystemFileUtil {
|
| bool copy) OVERRIDE;
|
| virtual base::PlatformFileError CopyInForeignFile(
|
| FileSystemOperationContext* context,
|
| - const FilePath& src_file_path,
|
| + const base::FilePath& src_file_path,
|
| const FileSystemURL& dest_url) OVERRIDE;
|
| virtual base::PlatformFileError DeleteFile(
|
| FileSystemOperationContext* context,
|
| @@ -87,7 +87,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE LocalFileUtil : public FileSystemFileUtil {
|
| FileSystemOperationContext* context,
|
| const FileSystemURL& url,
|
| base::PlatformFileInfo* file_info,
|
| - FilePath* platform_path,
|
| + base::FilePath* platform_path,
|
| SnapshotFilePolicy* snapshot_policy) OVERRIDE;
|
|
|
| private:
|
|
|