Index: chrome/common/extensions/api/file_manager_private.idl |
diff --git a/chrome/common/extensions/api/file_manager_private.idl b/chrome/common/extensions/api/file_manager_private.idl |
index 398c8f8143551a6db44e4087858ae5d99a6d3ab9..68fc3455a7a08a90535f41be59b44a981c19259e 100644 |
--- a/chrome/common/extensions/api/file_manager_private.idl |
+++ b/chrome/common/extensions/api/file_manager_private.idl |
@@ -8,8 +8,8 @@ |
implemented_in="chrome/browser/chromeos/extensions/file_manager/file_manager_private_api_functions.h"] |
namespace fileManagerPrivate { |
// Type of the mounted volume. |
-enum VolumeType { drive, downloads, removable, archive, cloud_device, provided, |
- mtp, testing }; |
+enum VolumeType { drive, downloads, removable, archive, provided, mtp, |
+ testing }; |
// Device type. Available if this is removable volume. |
enum DeviceType { usb, sd, optical, mobile, unknown }; |
@@ -525,10 +525,6 @@ callback AddFileWatchCallback = void(optional boolean success); |
// |success| True when file watch is successfully removed. |
callback RemoveFileWatchCallback = void(optional boolean success); |
-// |fileSystem| A DOMFileSystem instance for local file system access. null if |
-// the caller has no appropriate permissions. |
-callback RequestFileSystemCallback = void(optional object fileSystem); |
- |
// |entryProperties| A dictionary containing properties of the requested |
// entries. |
callback GetEntryPropertiesCallback = |