| 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 2a067d5f5b3c23b3bc9ca38c2c021b58546113e4..5d0c465f8ea1dc787019468dda42414e96f090e6 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,12 @@ class ProvidedFileSystemInterface {
|
| bool recursive,
|
| const fileapi::AsyncFileUtil::StatusCallback& callback) = 0;
|
|
|
| + // Requests creating a file. If the entry already exists, then the
|
| + // FILE_ERROR_EXISTS error must be returned.
|
| + virtual void CreateFile(
|
| + const base::FilePath& file_path,
|
| + 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(
|
|
|