diff options
Diffstat (limited to 'webkit/fileapi/local_file_system_file_util.cc')
-rw-r--r-- | webkit/fileapi/local_file_system_file_util.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/fileapi/local_file_system_file_util.cc b/webkit/fileapi/local_file_system_file_util.cc index 8def3f6..068a052 100644 --- a/webkit/fileapi/local_file_system_file_util.cc +++ b/webkit/fileapi/local_file_system_file_util.cc @@ -47,14 +47,15 @@ PlatformFileError LocalFileSystemFileUtil::EnsureFileExists( PlatformFileError LocalFileSystemFileUtil::GetFileInfo( FileSystemOperationContext* context, const FilePath& file_path, - base::PlatformFileInfo* file_info) { + base::PlatformFileInfo* file_info, + FilePath* platform_file_path) { FilePath local_path = GetLocalPath(context, context->src_origin_url(), context->src_type(), file_path); if (local_path.empty()) return base::PLATFORM_FILE_ERROR_INVALID_OPERATION; return FileSystemFileUtil::GetInstance()->GetFileInfo( - context, local_path, file_info); + context, local_path, file_info, platform_file_path); } PlatformFileError LocalFileSystemFileUtil::ReadDirectory( |