Home | History | Annotate | Download | only in dom

Lines Matching refs:blob

35 #include "core/fileapi/Blob.h"
37 #include "platform/blob/BlobURL.h"
66 String DOMURL::createObjectURL(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
68 if (!executionContext || !blob)
70 if (blob->hasBeenClosed()) {
71 exceptionState.throwDOMException(InvalidStateError, String(blob->isFile() ? "File" : "Blob") + " has been closed.");
74 return createPublicURL(executionContext, blob, blob->uuid());