NEW 207028
[Cocoa] Remove NSURLSessionResumeInfoLocalPath workaround where not needed
https://bugs.webkit.org/show_bug.cgi?id=207028
Summary [Cocoa] Remove NSURLSessionResumeInfoLocalPath workaround where not needed
David Quesada
Reported 2020-01-30 19:26:42 PST
CFNetwork fixed rdar://problem/34745171 in iOS 13 and macOS 10.15, which means that WebKit no longer needs the workaround of adding “NSURLSessionResumeInfoLocalPath” to resume data before creating a download task. However, the OS conditional in Download::resume() is set up so that non-Mac builds and 10.15-or-later Mac builds still attempt that workaround in the #else block. This workaround doesn’t have any effect (since CFNetwork changed the internal format of the resume data in macOS Mojave / iOS 12), and its presence only leaves the potential for a bug in the future if the format of the resume data blob is significantly changed in the future. We should remove this “workaround”. (keeping the first part of the #if/else around for Mojave)
Attachments
Note You need to log in before you can comment on or make changes to this bug.