Remove some support for iOS versions less than 13.0.
Update conditionals that reference __IPHONE_OS_VERSION_MIN_REQUIRED and __MAC_OS_X_VERSION_MAX_ALLOWED, assuming that they both have values >= 130000. This means that expressions like "__IPHONE_OS_VERSION_MIN_REQUIRED < 101300" are always False and "__IPHONE_OS_VERSION_MIN_REQUIRED >= 101300" are always True.
This removal is part of a series of patches effecting such removal.
(In reply to Jiewen Tan from comment #4)
> > Source/WebCore/PAL/pal/spi/cocoa/IOSurfaceSPI.h:-95
> > -#if (PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110000) || PLATFORM(MAC)
>
> Any reason why PLATFORM(MAC) is removed as well?
When removing the version test, the expression becomes
#if PLATFORM(IOS_FAMILY) || PLATFORM(MAC)
This in turn means #if PLATFORM(COCOA). And this is a Cocoa-only file, so we can already assume PLATFORM(COCOA) is true.
> > Tools/WebKitTestRunner/InjectedBundle/cocoa/ActivateFontsCocoa.mm:146
> > +#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400) || (PLATFORM(IOS) && !PLATFORM(IOS_FAMILY_SIMULATOR))
>
> Any reason why PLATFORM(IOS_FAMILY) is not used anymore?
I talked with Kilzer about this and that's what he recommended.
(In reply to Keith Rollin from comment #5)
> (In reply to Jiewen Tan from comment #4)
> > Any reason why PLATFORM(IOS_FAMILY) is not used anymore?
>
> I talked with Kilzer about this and that's what he recommended.
I should elaborate. First, Kilzer was the one who added the code, so that's what I talked with him. Second, the check originally was for IOS; it was changed to IOS_FAMILY in ap's Grand Change. Third, tvOS and watchOS were filtered out due to the iOS version check, so IOS_FAMILY was effectively IOS anyway.
(In reply to Keith Rollin from comment #6)
> (In reply to Keith Rollin from comment #5)
> > (In reply to Jiewen Tan from comment #4)
> > > Any reason why PLATFORM(IOS_FAMILY) is not used anymore?
> >
> > I talked with Kilzer about this and that's what he recommended.
>
> I should elaborate. First, Kilzer was the one who added the code, so that's
> what I talked with him. Second, the check originally was for IOS; it was
> changed to IOS_FAMILY in ap's Grand Change. Third, tvOS and watchOS were
> filtered out due to the iOS version check, so IOS_FAMILY was effectively IOS
> anyway.
Got you. LGTM. r=me.
> This patch doesn't actually remove support for iOS 12. These particular changes were chosen at this time because they affect iOS 11 and older.
Please re-title accordingly before landing. It's super misleading to land a patch that says "Remove some support for < iOS 13" when it doesn't.
> Why wouldn't it build on EWS?
EWS is on iOS 12, and you claimed that you removed support for it.
2019-09-16 17:34 PDT, Keith Rollin
2019-09-17 09:25 PDT, Keith Rollin
2019-09-17 12:35 PDT, Keith Rollin