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

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

Issue 356463002: [fsp] Add documentation for the File System Provider API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleaned up. Created 6 years, 6 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 0b18f68e35192919a41aed949a4461a79a5b1821..d5716238c7d051e8d30e6b405431bbe7f199df95 100644
--- a/chrome/common/extensions/api/file_system_provider.idl
+++ b/chrome/common/extensions/api/file_system_provider.idl
@@ -128,13 +128,13 @@ namespace fileSystemProvider {
// more entries will be returned, then <code>hasMore</code> must be true, and
// it has to be called again with additional entries. If no more entries are
// available, then <code>hasMore</code> must be set to false.
- callback EntriesCallback = void(ResourceEntry[] entries, bool hasMore);
+ callback EntriesCallback = void(EntryMetadata[] entries, boolean hasMore);
// Success callback for the <code>onReadFileRequested</code> event. If more
// data will be returned, then <code>hasMore</code> must be true, and it
// has to be called again with additional entries. If no more data is
// available, then <code>hasMore</code> must be set to false.
- callback FileDataCallback = void(ArrayBuffer data, bool hasMore);
+ callback FileDataCallback = void(ArrayBuffer data, boolean hasMore);
interface Functions {
// Mounts a file system with the given <code>fileSystemId</code> and <code>

Powered by Google App Engine
This is Rietveld 408576698