Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4517)

Unified Diff: chrome/common/extensions/api/file_system_provider.idl

Issue 1077823005: Declare providing extension capabilities in the manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/file_system_provider.idl
diff --git a/chrome/common/extensions/api/file_system_provider.idl b/chrome/common/extensions/api/file_system_provider.idl
index 0772f2c337a78cf5053da65f4d79d8a846b489e4..dea956abb9f8cfd20b29c3a824246acb9878a87e 100644
--- a/chrome/common/extensions/api/file_system_provider.idl
+++ b/chrome/common/extensions/api/file_system_provider.idl
@@ -41,22 +41,6 @@ namespace fileSystemProvider {
DELETED
};
- // Source of the file system data.
- enum FileSystemSource {
- // The file system is handling a file, eg. an archive file obtained via the
- // <code>onLaunched</code> event and the <code>file_handlers</code> manifest
- // entry.
- FILE,
-
- // The file system contents are fetched from an external device, such as a
- // USB device, but not via <code>file_handlers</code>.
- DEVICE,
-
- // The file system is network based. The contents are obtained from another
- // server or local network. Eg. cloud services.
- NETWORK
- };
-
// Represents metadata of a file or a directory.
dictionary EntryMetadata {
// True if it is a directory.
@@ -125,9 +109,6 @@ namespace fileSystemProvider {
// List of currently opened files.
OpenedFile[] openedFiles;
- // Source of the file system data.
- FileSystemSource? source;
-
// Whether the file system supports the <code>tag</code> field for observing
// directories.
[nodoc] boolean? supportsNotifyTag;
@@ -153,9 +134,6 @@ namespace fileSystemProvider {
// or 0, then not limited.
long? openedFilesLimit;
- // Source of the file system data.
- FileSystemSource? source;
-
// Whether the file system supports the <code>tag</code> field for observed
// directories. Required in order to enable the internal cache.
[nodoc] boolean? supportsNotifyTag;

Powered by Google App Engine
This is Rietveld 408576698