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..d2e5223986cb0f58eb24ebc7de16492e54f33f4d 100644 |
| --- a/webkit/fileapi/file_system_operation.h |
| +++ b/webkit/fileapi/file_system_operation.h |
| @@ -32,6 +32,7 @@ namespace fileapi { |
| class FileSystemCallbackDispatcher; |
| class FileSystemContext; |
| +class FileSystemOperationContext; |
| class FileWriterDelegate; |
| // This class is designed to serve one-time file system operation per instance. |
| @@ -55,7 +56,7 @@ class FileSystemOperation { |
| bool exclusive); |
| void CreateDirectory(const FilePath& path, |
| bool exclusive, |
| - bool recursive); |
| + bool); |
|
kinuko
2011/03/03 21:29:22
I'd like to keep this signature as is until we cle
Dai Mikurube (google.com)
2011/03/03 22:19:10
Done. Replied in file_system_operation.cc.
|
| void Copy(const FilePath& src_path, |
| const FilePath& dest_path); |
| void Move(const FilePath& src_path, |
| @@ -172,6 +173,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_; |