Changes between Version 3 and Version 4 of MinimalFileStorage
- Timestamp:
- Sep 22, 2012, 5:49:35 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MinimalFileStorage
v3 v4 6 6 {{{ 7 7 partial interface Navigator { 8 Directory getSandboxedFilesystem();8 Directory getSandboxedFilesystem(); 9 9 }; 10 10 }}} … … 28 28 DOMRequest remove(DOMString name); 29 29 30 // Atomically renames a file or directory; DOMRequest returns boolean true or false to indicate success30 // Atomically renames a file or directory; DOMRequest returns boolean true or false to indicate success 31 31 DOMRequest remove(DOMString oldName, DOMString newName); 32 32 … … 69 69 readonly attribute DOMString readyState; // "pending" or "done" 70 70 71 readonly attribute any result;72 readonly attribute DOMError error;71 readonly attribute any result; 72 readonly attribute DOMError error; 73 73 74 attribute EventHandler onsuccess;75 attribute EventHandler onerror;74 attribute EventHandler onsuccess; 75 attribute EventHandler onerror; 76 76 }; 77 77 78 78 interface FileRequest : DOMRequest { 79 readonly attribute FileHandle fileHandle;79 readonly attribute FileHandle fileHandle; 80 80 81 attribute EventHandler onprogress;81 attribute EventHandler onprogress; 82 82 }; 83 83