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

Unified Diff: webkit/fileapi/file_system_operation.h

Issue 3567012: Support removeRecursively and new copy/move behaviors for FileSystem API (Closed)
Patch Set: '' Created 10 years, 2 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/blob/deletable_file_reference.cc ('k') | webkit/fileapi/file_system_operation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_operation.h
diff --git a/webkit/fileapi/file_system_operation.h b/webkit/fileapi/file_system_operation.h
index 1107303960a3aefcaf92b4465dcc25b1ba932f71..d810b63334b1bd34d9c64c921e0e6f04e2aa5a7a 100644
--- a/webkit/fileapi/file_system_operation.h
+++ b/webkit/fileapi/file_system_operation.h
@@ -45,9 +45,6 @@ class FileSystemOperation {
void Copy(const FilePath& src_path,
const FilePath& dest_path);
- // If |dest_path| exists and is a directory, behavior is unspecified or
- // varies for different platforms. TODO(kkanetkar): Fix this as per spec
- // when it is addressed in spec.
void Move(const FilePath& src_path,
const FilePath& dest_path);
@@ -59,7 +56,7 @@ class FileSystemOperation {
void ReadDirectory(const FilePath& path);
- void Remove(const FilePath& path);
+ void Remove(const FilePath& path, bool recursive);
void Write(
const FilePath& path, const GURL& blob_url, int64 offset);
« no previous file with comments | « webkit/blob/deletable_file_reference.cc ('k') | webkit/fileapi/file_system_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698