Index: webkit/browser/fileapi/obfuscated_file_util.h |
diff --git a/webkit/browser/fileapi/obfuscated_file_util.h b/webkit/browser/fileapi/obfuscated_file_util.h |
index 7b14779986aa0fd7d98aaff38df1f31d3cf7c47a..ed1f2bc31af5694686d11cbd92a51bef63495ebb 100644 |
--- a/webkit/browser/fileapi/obfuscated_file_util.h |
+++ b/webkit/browser/fileapi/obfuscated_file_util.h |
@@ -11,6 +11,7 @@ |
#include <vector> |
#include "base/callback_forward.h" |
+#include "base/files/file.h" |
#include "base/files/file_path.h" |
#include "base/files/file_util_proxy.h" |
#include "base/gtest_prod_util.h" |
@@ -110,65 +111,65 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE ObfuscatedFileUtil |
virtual ~ObfuscatedFileUtil(); |
// FileSystemFileUtil overrides. |
- virtual base::PlatformFileError CreateOrOpen( |
+ virtual base::File::Error CreateOrOpen( |
FileSystemOperationContext* context, |
const FileSystemURL& url, |
int file_flags, |
base::PlatformFile* file_handle, |
bool* created) OVERRIDE; |
- virtual base::PlatformFileError Close( |
+ virtual base::File::Error Close( |
FileSystemOperationContext* context, |
base::PlatformFile file) OVERRIDE; |
- virtual base::PlatformFileError EnsureFileExists( |
+ virtual base::File::Error EnsureFileExists( |
FileSystemOperationContext* context, |
const FileSystemURL& url, bool* created) OVERRIDE; |
- virtual base::PlatformFileError CreateDirectory( |
+ virtual base::File::Error CreateDirectory( |
FileSystemOperationContext* context, |
const FileSystemURL& url, |
bool exclusive, |
bool recursive) OVERRIDE; |
- virtual base::PlatformFileError GetFileInfo( |
+ virtual base::File::Error GetFileInfo( |
FileSystemOperationContext* context, |
const FileSystemURL& url, |
- base::PlatformFileInfo* file_info, |
+ base::File::Info* file_info, |
base::FilePath* platform_file) OVERRIDE; |
virtual scoped_ptr<AbstractFileEnumerator> CreateFileEnumerator( |
FileSystemOperationContext* context, |
const FileSystemURL& root_url) OVERRIDE; |
- virtual base::PlatformFileError GetLocalFilePath( |
+ virtual base::File::Error GetLocalFilePath( |
FileSystemOperationContext* context, |
const FileSystemURL& file_system_url, |
base::FilePath* local_path) OVERRIDE; |
- virtual base::PlatformFileError Touch( |
+ virtual base::File::Error Touch( |
FileSystemOperationContext* context, |
const FileSystemURL& url, |
const base::Time& last_access_time, |
const base::Time& last_modified_time) OVERRIDE; |
- virtual base::PlatformFileError Truncate( |
+ virtual base::File::Error Truncate( |
FileSystemOperationContext* context, |
const FileSystemURL& url, |
int64 length) OVERRIDE; |
- virtual base::PlatformFileError CopyOrMoveFile( |
+ virtual base::File::Error CopyOrMoveFile( |
FileSystemOperationContext* context, |
const FileSystemURL& src_url, |
const FileSystemURL& dest_url, |
CopyOrMoveOption option, |
bool copy) OVERRIDE; |
- virtual base::PlatformFileError CopyInForeignFile( |
+ virtual base::File::Error CopyInForeignFile( |
FileSystemOperationContext* context, |
const base::FilePath& src_file_path, |
const FileSystemURL& dest_url) OVERRIDE; |
- virtual base::PlatformFileError DeleteFile( |
+ virtual base::File::Error DeleteFile( |
FileSystemOperationContext* context, |
const FileSystemURL& url) OVERRIDE; |
- virtual base::PlatformFileError DeleteDirectory( |
+ virtual base::File::Error DeleteDirectory( |
FileSystemOperationContext* context, |
const FileSystemURL& url) OVERRIDE; |
virtual webkit_blob::ScopedFile CreateSnapshotFile( |
FileSystemOperationContext* context, |
const FileSystemURL& url, |
- base::PlatformFileError* error, |
- base::PlatformFileInfo* file_info, |
+ base::File::Error* error, |
+ base::File::Info* file_info, |
base::FilePath* platform_path) OVERRIDE; |
// Same as the other CreateFileEnumerator, but with recursive support. |
@@ -195,7 +196,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE ObfuscatedFileUtil |
const GURL& origin, |
const std::string& type_string, |
bool create, |
- base::PlatformFileError* error_code); |
+ base::File::Error* error_code); |
// Deletes the topmost directory specific to this origin and type. This will |
// delete its directory database. |
@@ -247,18 +248,18 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE ObfuscatedFileUtil |
base::FilePath GetDirectoryForURL( |
const FileSystemURL& url, |
bool create, |
- base::PlatformFileError* error_code); |
+ base::File::Error* error_code); |
// This just calls get_type_string_for_url_ callback that is given in ctor. |
std::string CallGetTypeStringForURL(const FileSystemURL& url); |
- base::PlatformFileError GetFileInfoInternal( |
+ base::File::Error GetFileInfoInternal( |
SandboxDirectoryDatabase* db, |
FileSystemOperationContext* context, |
const FileSystemURL& url, |
FileId file_id, |
FileInfo* local_info, |
- base::PlatformFileInfo* file_info, |
+ base::File::Info* file_info, |
base::FilePath* platform_file_path); |
// Creates a new file, both the underlying backing file and the entry in the |
@@ -272,7 +273,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE ObfuscatedFileUtil |
// Caveat: do not supply handle if you're also supplying a data path. It was |
// easier not to support this, and no code has needed it so far, so it will |
// DCHECK and handle will hold base::kInvalidPlatformFileValue. |
- base::PlatformFileError CreateFile( |
+ base::File::Error CreateFile( |
FileSystemOperationContext* context, |
const base::FilePath& source_file_path, |
const FileSystemURL& dest_url, |
@@ -300,7 +301,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE ObfuscatedFileUtil |
// contain both the filesystem type subdirectories. |
base::FilePath GetDirectoryForOrigin(const GURL& origin, |
bool create, |
- base::PlatformFileError* error_code); |
+ base::File::Error* error_code); |
void InvalidateUsageCache(FileSystemOperationContext* context, |
const GURL& origin, |
@@ -313,13 +314,13 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE ObfuscatedFileUtil |
// for initializing database if it's not empty. |
bool InitOriginDatabase(const GURL& origin_hint, bool create); |
- base::PlatformFileError GenerateNewLocalPath( |
+ base::File::Error GenerateNewLocalPath( |
SandboxDirectoryDatabase* db, |
FileSystemOperationContext* context, |
const FileSystemURL& url, |
base::FilePath* local_path); |
- base::PlatformFileError CreateOrOpenInternal( |
+ base::File::Error CreateOrOpenInternal( |
FileSystemOperationContext* context, |
const FileSystemURL& url, |
int file_flags, |