[Webkit-unassigned] [Bug 39083] Refactor FormData and Blob for better support of Blobs synthesized by BlobBuilder

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jun 2 23:18:55 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=39083





--- Comment #52 from Jian Li <jianli at chromium.org>  2010-06-02 23:18:53 PST ---
(In reply to comment #51)
> Are you trying to avoid extra copies between a Blob and the network stack?

I think we're trying to avoid the similar internal representation and operations that are needed for BlobBuilder and FormData, i.e., append operations. This is what this patch is about.

For copying between FormData/Blob and the network stack, it might be more efficient if we can share the same structure for the element list part, that is, FormDataElement vs. WebHTTPBody::Element. What I mean is that the element list is same and can be shared between these two, while each of them has its own specific members. FormData has "identifier" and Blob has "contentType" and "contentDisposition". We could have another patch for this purpose.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list