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

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: Fixed + removed doc for extensions. 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
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/intros/fileSystemProvider.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/intros/fileSystemProvider.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698