| Index: webkit/fileapi/file_system_operation.cc
|
| ===================================================================
|
| --- webkit/fileapi/file_system_operation.cc (revision 79323)
|
| +++ webkit/fileapi/file_system_operation.cc (working copy)
|
| @@ -453,7 +453,8 @@
|
|
|
| void FileSystemOperation::DidDirectoryExists(
|
| base::PlatformFileError rv,
|
| - const base::PlatformFileInfo& file_info) {
|
| + const base::PlatformFileInfo& file_info,
|
| + const FilePath& unused) {
|
| if (rv == base::PLATFORM_FILE_OK) {
|
| if (file_info.is_directory)
|
| dispatcher_->DidSucceed();
|
| @@ -467,7 +468,8 @@
|
|
|
| void FileSystemOperation::DidFileExists(
|
| base::PlatformFileError rv,
|
| - const base::PlatformFileInfo& file_info) {
|
| + const base::PlatformFileInfo& file_info,
|
| + const FilePath& unused) {
|
| if (rv == base::PLATFORM_FILE_OK) {
|
| if (file_info.is_directory)
|
| dispatcher_->DidFail(base::PLATFORM_FILE_ERROR_NOT_A_FILE);
|
| @@ -481,9 +483,10 @@
|
|
|
| void FileSystemOperation::DidGetMetadata(
|
| base::PlatformFileError rv,
|
| - const base::PlatformFileInfo& file_info) {
|
| + const base::PlatformFileInfo& file_info,
|
| + const FilePath& platform_path) {
|
| if (rv == base::PLATFORM_FILE_OK)
|
| - dispatcher_->DidReadMetadata(file_info);
|
| + dispatcher_->DidReadMetadata(file_info, platform_path);
|
| else
|
| dispatcher_->DidFail(rv);
|
| delete this;
|
|
|