| 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 15b6e17ba48ffca58d85a43ec5ad1285c624f68e..2a067d5f5b3c23b3bc9ca38c2c021b58546113e4 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
|
| @@ -109,6 +109,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;
|
|
|
|
|