Chromium Code Reviews| Index: webkit/fileapi/file_system_operation.h |
| diff --git a/webkit/fileapi/file_system_operation.h b/webkit/fileapi/file_system_operation.h |
| index 6542806853b47ecdf422b4f815d4a383331a870f..35c716cb673c5b2f9baab2a090408f2ac30ae418 100644 |
| --- a/webkit/fileapi/file_system_operation.h |
| +++ b/webkit/fileapi/file_system_operation.h |
| @@ -31,7 +31,9 @@ class GURL; |
| namespace fileapi { |
| class FileSystemCallbackDispatcher; |
| +class FileSystemFileUtilProxy; |
|
ericu
2011/03/03 01:05:11
I don't think we need the FileSystemFileUtilProxy
Dai Mikurube (google.com)
2011/03/03 20:24:52
Done.
|
| class FileSystemContext; |
| +class FileSystemOperationContext; |
| class FileWriterDelegate; |
| // This class is designed to serve one-time file system operation per instance. |
| @@ -55,7 +57,7 @@ class FileSystemOperation { |
| bool exclusive); |
| void CreateDirectory(const FilePath& path, |
| bool exclusive, |
| - bool recursive); |
| + bool); |
| void Copy(const FilePath& src_path, |
| const FilePath& dest_path); |
| void Move(const FilePath& src_path, |
| @@ -172,6 +174,7 @@ class FileSystemOperation { |
| scoped_ptr<FileSystemCallbackDispatcher> dispatcher_; |
| scoped_refptr<FileSystemContext> file_system_context_; |
| + scoped_ptr<FileSystemOperationContext> file_system_operation_context_; |
| base::ScopedCallbackFactory<FileSystemOperation> callback_factory_; |