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

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

Issue 288113004: [fsp] Add FileStreamReader for the reading operation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed tests. Created 6 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/api/file_system_provider_internal.idl » ('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 8b02cffde9de774d48025589c3777a72b81b00f9..bee990382ba3a54a92d124ad80e72337749044fe 100644
--- a/chrome/common/extensions/api/file_system_provider.idl
+++ b/chrome/common/extensions/api/file_system_provider.idl
@@ -85,7 +85,7 @@ namespace fileSystemProvider {
// data will be returned, then <code>hasNext</code> must be true, and it
// has to be called again with additional entries. If no more data is
// available, then <code>hasNext</code> must be set to false.
- callback FileDataCallback = void(DOMString data, bool hasNext);
+ callback FileDataCallback = void(ArrayBuffer data, bool hasNext);
interface Functions {
// Mounts a file system with the given <code>displayName</code>.
@@ -145,6 +145,7 @@ namespace fileSystemProvider {
// exist, then it should be created.
[maxListeners=1] static void onOpenFileRequested(
long fileSystemId,
+ long requestId,
DOMString filePath,
OpenFileMode mode,
boolean create,
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/api/file_system_provider_internal.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698