Index: webkit/browser/fileapi/recursive_operation_delegate.h |
diff --git a/webkit/browser/fileapi/recursive_operation_delegate.h b/webkit/browser/fileapi/recursive_operation_delegate.h |
index 08e30507bce1b02f5f236eec8e651d3bc31a2a26..56dad9115b8c6e763a117693f76ea5c5f2424e1b 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_; |