RESOLVED FIXED 134454
Encode/decode CFURLRequestRefs when USE(CFNETWORK) is enabled
https://bugs.webkit.org/show_bug.cgi?id=134454
Summary Encode/decode CFURLRequestRefs when USE(CFNETWORK) is enabled
Pratik Solanki
Reported 2014-06-30 14:02:55 PDT
We current encode/decode NSURLRequest to send over the wire. We can just use CFURLRequestRef on iOS.
Attachments
Patch (231.85 KB, patch)
2014-06-30 14:12 PDT, Pratik Solanki
no flags
Patch (231.84 KB, patch)
2014-07-01 09:54 PDT, Pratik Solanki
kling: review+
Pratik Solanki
Comment 1 2014-06-30 14:05:37 PDT
Pratik Solanki
Comment 2 2014-06-30 14:12:24 PDT
Sam Weinig
Comment 3 2014-06-30 16:27:05 PDT
Comment on attachment 234092 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=234092&action=review > Source/WebKit2/Shared/mac/WebCoreArgumentCodersMac.mm:64 > + CFURLRequestSetHTTPRequestBody((CFMutableURLRequestRef)(requestToSerialize.get()), nil); > + CFURLRequestSetHTTPRequestBodyStream((CFMutableURLRequestRef)(requestToSerialize.get()), nil); These casts scare me. Can we at least use the checked_cf_cast?
Pratik Solanki
Comment 4 2014-07-01 09:49:58 PDT
Comment on attachment 234092 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=234092&action=review >> Source/WebKit2/Shared/mac/WebCoreArgumentCodersMac.mm:64 >> + CFURLRequestSetHTTPRequestBodyStream((CFMutableURLRequestRef)(requestToSerialize.get()), nil); > > These casts scare me. Can we at least use the checked_cf_cast? I resorted to plain old cast since static_cast didn't work and it seems dilemma I would have to combine it with const_cast. The NSURLRequest version of the code used C casts so I just used that. I didn't know about checked_cf_cast! I tried that but that also ran into const issues. Likely would have to use another const_cast along with it. I am going to try something different instead. New patch coming up.
Pratik Solanki
Comment 5 2014-07-01 09:54:31 PDT
Andreas Kling
Comment 6 2014-07-01 13:03:38 PDT
Comment on attachment 234168 [details] Patch OK! r=me
Pratik Solanki
Comment 7 2014-07-01 17:58:23 PDT
Note You need to log in before you can comment on or make changes to this bug.