RESOLVED FIXED 49418
Add didReceiveResponse and didReceiveData to the download client
https://bugs.webkit.org/show_bug.cgi?id=49418
Summary Add didReceiveResponse and didReceiveData to the download client
Anders Carlsson
Reported 2010-11-11 17:23:13 PST
Add didReceiveResponse and didReceiveData to the download client
Attachments
Patch (15.82 KB, patch)
2010-11-11 17:26 PST, Anders Carlsson
darin: review+
Anders Carlsson
Comment 1 2010-11-11 17:26:30 PST
Darin Adler
Comment 2 2010-11-11 17:29:58 PST
Comment on attachment 73684 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=73684&action=review > WebKit2/UIProcess/API/C/WKContext.h:77 > +typedef void (*WKContextDownloadDidReceiveResponseCallback)(WKContextRef context, WKDownloadRef download, WKURLResponseRef response, const void *clientInfo); > +typedef void (*WKContextDownloadDidReceiveDataCallback)(WKContextRef context, WKDownloadRef download, uint64_t length, const void *clientInfo); > typedef void (*WKContextDownloadDidCreateDestinationCallback)(WKContextRef context, WKDownloadRef download, WKStringRef path, const void *clientInfo); > +typedef void (*WKContextDownloadDidFinishCallback)(WKContextRef context, WKDownloadRef download, const void *clientInfo); Can we do "const void*" instead of "const void *"?
Anders Carlsson
Comment 3 2010-11-11 17:33:51 PST
Note You need to log in before you can comment on or make changes to this bug.