diff options
Diffstat (limited to 'webkit/fileapi/syncable/syncable_file_system_operation.cc')
-rw-r--r-- | webkit/fileapi/syncable/syncable_file_system_operation.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/fileapi/syncable/syncable_file_system_operation.cc b/webkit/fileapi/syncable/syncable_file_system_operation.cc index 0387535..e2145b5 100644 --- a/webkit/fileapi/syncable/syncable_file_system_operation.cc +++ b/webkit/fileapi/syncable/syncable_file_system_operation.cc @@ -183,7 +183,7 @@ void SyncableFileSystemOperation::GetMetadata( DCHECK(CalledOnValidThread()); if (!operation_runner_) { callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND, - base::PlatformFileInfo(), FilePath()); + base::PlatformFileInfo(), base::FilePath()); delete file_system_operation_; delete this; return; @@ -330,7 +330,7 @@ void SyncableFileSystemOperation::CreateSnapshotFile( DCHECK(CalledOnValidThread()); if (!operation_runner_) { callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND, - base::PlatformFileInfo(), FilePath(), NULL); + base::PlatformFileInfo(), base::FilePath(), NULL); delete file_system_operation_; delete this; return; |