| 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);
|
|
|