| 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..46aa8e9720e466cd2f148da359cdf855bf718392 100644
|
| --- a/webkit/fileapi/file_system_operation.h
|
| +++ b/webkit/fileapi/file_system_operation.h
|
| @@ -16,6 +16,7 @@
|
| #include "base/scoped_ptr.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "webkit/fileapi/file_system_types.h"
|
| +#include "webkit/fileapi/file_system_operation_context.h"
|
|
|
| namespace base {
|
| class Time;
|
| @@ -55,7 +56,7 @@ class FileSystemOperation {
|
| bool exclusive);
|
| void CreateDirectory(const FilePath& path,
|
| bool exclusive,
|
| - bool recursive);
|
| + bool unused);
|
| 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_;
|
| + FileSystemOperationContext file_system_operation_context_;
|
|
|
| base::ScopedCallbackFactory<FileSystemOperation> callback_factory_;
|
|
|
|
|