| Index: chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h b/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h
|
| index 9858ee2ee802fce15f8dd2b5641c1ee4b172f7d1..4bc4901f8573d09cc8ddd5d06827772b0a04633f 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h
|
| @@ -110,6 +110,13 @@ class ProvidedFileSystemInterface {
|
| bool recursive,
|
| const fileapi::AsyncFileUtil::StatusCallback& callback) = 0;
|
|
|
| + // Requests deleting a directory. If |recursive| is passed and the entry is
|
| + // a directory, then all contents of it (recursively) will be deleted too.
|
| + virtual void DeleteEntry(
|
| + const base::FilePath& entry_path,
|
| + bool recursive,
|
| + const fileapi::AsyncFileUtil::StatusCallback& callback) = 0;
|
| +
|
| // Returns a provided file system info for this file system.
|
| virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const = 0;
|
|
|
|
|