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

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: Cleaned up. 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
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..7345908146bdfcac374e2256c024659e7151bfd6 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>.

Powered by Google App Engine
This is Rietveld 408576698