| 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 b0071c9f5c771278b322db723af1b2bba71167fa..4ca7b3391f9ab6cd012317191dc2dccbf9d4d2ee 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
|
| @@ -129,6 +129,13 @@ class ProvidedFileSystemInterface {
|
| const base::FilePath& target_path,
|
| const fileapi::AsyncFileUtil::StatusCallback& callback) = 0;
|
|
|
| + // Requests moving an entry (recursively in case of a directory) within the
|
| + // same file system.
|
| + virtual void MoveEntry(
|
| + const base::FilePath& source_path,
|
| + const base::FilePath& target_path,
|
| + const fileapi::AsyncFileUtil::StatusCallback& callback) = 0;
|
| +
|
| // Returns a provided file system info for this file system.
|
| virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const = 0;
|
|
|
|
|