Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: webkit/fileapi/file_system_operation.h

Issue 6604020: Introduce FileSystemFileUtil and -Proxy to decorate base::file_util in webkit/fileapi. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Passing FileSystemOperationContext by value. Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..c67174990ae60d7f365e2503f98f4fba881a825e 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 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_;
+ scoped_ptr<FileSystemOperationContext> file_system_operation_context_;
base::ScopedCallbackFactory<FileSystemOperation> callback_factory_;

Powered by Google App Engine
This is Rietveld 408576698