| Function Summary | |
blobToString(!Blob blob, string= opt_encoding) ⇒ !goog.async.DeferredConverts a Blob or a File into a string. This should only be used when the blob is known to be small. | |
createObjectUrl(!Blob blob) ⇒ stringCreates a blob URL for a blob object. | |
getBlob((ArrayBuffer|Blob|string|undefined) var_args) ⇒ !BlobConcatenates one or more values together and converts them to a Blob. | |
getPersistent(number size) ⇒ !goog.async.DeferredReturns a persistent FileSystem object. A persistent filesystem will never be deleted without the user's or application's authorization. | |
getTemporary(number size) ⇒ !goog.async.DeferredReturns a temporary FileSystem object. A temporary filesystem may be deleted by the user agent at its discretion. | |
getUrlObject_() ⇒ ?goog.fs.UrlObject_Get the object that has the createObjectURL and revokeObjectURL functions for this browser. | |
get_(?goog.fs.FileSystemType_ type, number size) ⇒ !goog.async.DeferredGet a wrapped FileSystem object. | |
revokeObjectUrl(string url)Revokes a URL created by {@link goog.fs.createObjectUrl}. | |
sliceBlob(!Blob blob, number start, number= opt_end) ⇒ ?BlobSlices the blob. The returned blob contains data from the start byte (inclusive) till the end byte (exclusive). Negative indices can be used to count bytes from the end of the blob (-1 == blob.size - 1). Indices are always clamped to blob range. If end is omitted, all the data till the end of the blob is taken. | |