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

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

Issue 985533004: Implement chrome.fileSystem.requestFileSystem(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed compile issues. Created 5 years, 9 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_manager_private.idl
diff --git a/chrome/common/extensions/api/file_manager_private.idl b/chrome/common/extensions/api/file_manager_private.idl
index 2431652fd2e29259a6f87aeebeee5ce2e9f56819..21a1b38367ea7698cc2ac542874ad6ee52af8111 100644
--- a/chrome/common/extensions/api/file_manager_private.idl
+++ b/chrome/common/extensions/api/file_manager_private.idl
@@ -593,7 +593,7 @@ callback GetProfilesCallback = void(ProfileInfo[] profiles,
// |entryUrl| URL of an entry in a normal file system.
callback ResolveEntriesCallback =
- void([instanceOf=FileEntry] object[] entries);
+ void([instanceOf=Entry] object[] entries);
// |checksum| Result checksum.
callback ComputeChecksumCallback = void(DOMString checksum);
@@ -652,13 +652,6 @@ interface Functions {
static void removeFileWatch(DOMString fileUrl,
RemoveFileWatchCallback callback);
- // Requests access to a file system volume.
- // |volumeId| The ID of the file system volume to request. The volume ID is
- // delivered to JavaScript as part of VolumeMetadata.
- // |callback|
- static void requestFileSystem(DOMString volumeId,
- RequestFileSystemCallback callback);
-
// Enables the extenal file scheme necessary to initiate drags to the browser
// window for files on the external backend.
static void enableExternalFileScheme();
@@ -710,13 +703,13 @@ interface Functions {
boolean pin,
optional SimpleCallback callback);
- // Resolves file entries in the isolated file system and returns corresponding
+ // Resolves entries in the isolated file system and returns corresponding
// entries in the external file system mounted to Chrome OS file manager
// backend. If resolving entry fails, the entry will be just ignored and the
// corresponding entry does not appear in the result.
[nocompile]
static void resolveIsolatedEntries(
- [instanceOf=FileEntry] object[] entries,
+ [instanceOf=Entry] object[] entries,
ResolveEntriesCallback callback);
// Mount a resource or a file.

Powered by Google App Engine
This is Rietveld 408576698