Changes between Version 7 and Version 8 of MinimalFileStorage


Ignore:
Timestamp:
Sep 22, 2012 5:56:40 PM (12 years ago)
Author:
mjs@apple.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MinimalFileStorage

    v7 v8  
    3535    DOMRequest openForWriting(DOMString name or File file);
    3636
     37    // The request will return a FileHandle; error if called on a Directory
     38    // If File is passed, it must be a descendant of this directory
     39    DOMRequest openForAppending(DOMString name or File file);
     40
    3741    // The DOMMultiRequest returns File or Directory objects
    3842    DOMMultiRequest enumerateShallow();
     
    5660    DOMRequest readAsText(long size, optional DOMString encoding);
    5761    DOMRequest write(DOMString or ArrayBuffer or ArrayBufferView or Blob value);
    58     DOMRequest append(DOMString or ArrayBuffer or ArrayBufferView or Blob value);
    5962    DOMRequest truncate(optional long long size);
    6063}