diff options
Diffstat (limited to 'webkit/browser/fileapi/recursive_operation_delegate.h')
-rw-r--r-- | webkit/browser/fileapi/recursive_operation_delegate.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/webkit/browser/fileapi/recursive_operation_delegate.h b/webkit/browser/fileapi/recursive_operation_delegate.h index 08e3050..56dad91 100644 --- a/webkit/browser/fileapi/recursive_operation_delegate.h +++ b/webkit/browser/fileapi/recursive_operation_delegate.h @@ -121,20 +121,20 @@ class WEBKIT_STORAGE_BROWSER_EXPORT RecursiveOperationDelegate private: void DidTryProcessFile(const FileSystemURL& root, - base::PlatformFileError error); + base::File::Error error); void ProcessNextDirectory(); - void DidProcessDirectory(base::PlatformFileError error); + void DidProcessDirectory(base::File::Error error); void DidReadDirectory(const FileSystemURL& parent, - base::PlatformFileError error, + base::File::Error error, const FileEntryList& entries, bool has_more); void ProcessPendingFiles(); - void DidProcessFile(base::PlatformFileError error); + void DidProcessFile(base::File::Error error); void ProcessSubDirectory(); - void DidPostProcessDirectory(base::PlatformFileError error); + void DidPostProcessDirectory(base::File::Error error); // Called when all recursive operation is done (or an error occurs). - void Done(base::PlatformFileError error); + void Done(base::File::Error error); FileSystemContext* file_system_context_; StatusCallback callback_; |