Changeset 249211 in webkit
- Timestamp:
- Aug 28, 2019, 12:19:41 PM (7 years ago)
- Location:
- trunk/Source/WebKitLegacy/mac
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Misc/WebDownload.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKitLegacy/mac/ChangeLog
r249208 r249211 1 2019-08-28 Dean Jackson <dino@apple.com> 2 3 GenerateTAPI WebKitLegacy.tbd fails on internal iOS Simulator builds 4 https://bugs.webkit.org/show_bug.cgi?id=201200 5 6 Reviewed by Simon Fraser. 7 8 We want to include Foundation/NSURLDownload.h if we're on 9 a newer iOS. 10 11 * Misc/WebDownload.h: 12 1 13 2019-08-28 Keith Rollin <krollin@apple.com> 2 14 -
trunk/Source/WebKitLegacy/mac/Misc/WebDownload.h
r245862 r249211 35 35 #if (defined TARGET_OS_IOSMAC && TARGET_OS_IOSMAC) || (defined(TARGET_OS_WATCH) && TARGET_OS_WATCH) 36 36 #import <CFNetwork/CFNSURLConnection.h> 37 #elif !TARGET_OS_IPHONE || ( defined USE_APPLE_INTERNAL_SDK&& USE_APPLE_INTERNAL_SDK)37 #elif !TARGET_OS_IPHONE || (TARGET_OS_IPHONE && __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000) || (defined(USE_APPLE_INTERNAL_SDK) && USE_APPLE_INTERNAL_SDK) 38 38 #import <Foundation/NSURLDownload.h> 39 39 #else
Note:
See TracChangeset
for help on using the changeset viewer.