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

Unified Diff: webkit/fileapi/file_util_helper.h

Issue 9616033: Merge CrossFileUtilHelper to FileUtilHelper as Copy() and Move(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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
« no previous file with comments | « webkit/fileapi/file_system_test_helper.cc ('k') | webkit/fileapi/file_util_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_util_helper.h
diff --git a/webkit/fileapi/file_util_helper.h b/webkit/fileapi/file_util_helper.h
index 91c6e7ab602a571b138cce20c4f5930939bd9e21..494be1f426690d4d54ede1c81fb5c3a5ede8b66e 100644
--- a/webkit/fileapi/file_util_helper.h
+++ b/webkit/fileapi/file_util_helper.h
@@ -17,6 +17,20 @@ class FileSystemPath;
// FileSystemFileUtilProxy. The method should be called on FILE thread.
class FileUtilHelper {
public:
+ static base::PlatformFileError Copy(
+ FileSystemOperationContext* context,
+ FileSystemFileUtil* src_file_util,
+ FileSystemFileUtil* dest_file_utile,
+ const FileSystemPath& src_root_path,
+ const FileSystemPath& dest_root_path);
+
+ static base::PlatformFileError Move(
+ FileSystemOperationContext* context,
+ FileSystemFileUtil* src_file_util,
+ FileSystemFileUtil* dest_file_utile,
+ const FileSystemPath& src_root_path,
+ const FileSystemPath& dest_root_path);
+
static base::PlatformFileError Delete(
FileSystemOperationContext* context,
FileSystemFileUtil* file_util,
« no previous file with comments | « webkit/fileapi/file_system_test_helper.cc ('k') | webkit/fileapi/file_util_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698