| 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 2af2430c7a1874a2a0e4ee50be84d4d811f02f43..7cf174d8a21ebf7aceacc63d1810a11301cb3d38 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
|
| @@ -31,6 +31,12 @@ class ProvidedFileSystemInterface {
|
| virtual void RequestUnmount(
|
| const fileapi::AsyncFileUtil::StatusCallback& callback) = 0;
|
|
|
| + // Requests metadata of the passed |entry_path|. It can be either a file
|
| + // or a directory.
|
| + virtual void GetMetadata(
|
| + const base::FilePath& entry_path,
|
| + const fileapi::AsyncFileUtil::GetFileInfoCallback& callback) = 0;
|
| +
|
| // Returns a provided file system info for this file system.
|
| virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const = 0;
|
|
|
|
|