Changeset 259025 in webkit


Ignore:
Timestamp:
Mar 25, 2020 5:32:00 PM (4 years ago)
Author:
timothy_horton@apple.com
Message:

Unable to build WebKit with iOS 13.4 SDK
https://bugs.webkit.org/show_bug.cgi?id=209317

Reviewed by Megan Gardner.

  • Platform/spi/ios/UIKitSPI.h:

Stop defining some UIKit SPI that is now API (hurray!).

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r259023 r259025  
     12020-03-25  Tim Horton  <timothy_horton@apple.com>
     2
     3        Unable to build WebKit with iOS 13.4 SDK
     4        https://bugs.webkit.org/show_bug.cgi?id=209317
     5
     6        Reviewed by Megan Gardner.
     7
     8        * Platform/spi/ios/UIKitSPI.h:
     9        Stop defining some UIKit SPI that is now API (hurray!).
     10
    1112020-03-25  Per Arne Vollan  <pvollan@apple.com>
    212
  • trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h

    r258919 r259025  
    231231} UIKeyboardInputFlags;
    232232
     233#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130400
    233234typedef NS_OPTIONS(NSInteger, UIEventButtonMask) {
    234235    UIEventButtonMaskPrimary = 1 << 0,
    235236    UIEventButtonMaskSecondary = 1 << 1,
    236237};
     238#endif
    237239
    238240@interface UIEvent ()
     
    380382};
    381383
     384#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130400
    382385typedef enum {
    383386    UIAxisNeither = 0,
     
    386389    UIAxisBoth = (UIAxisHorizontal | UIAxisVertical),
    387390} UIAxis;
     391#endif
    388392
    389393@interface UIScrollView ()
     
    412416
    413417@interface UIGestureRecognizer ()
     418#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130400
    414419@property (nonatomic, readonly, getter=_modifierFlags) UIKeyModifierFlags modifierFlags;
     420#endif
    415421
    416422- (void)_hoverEntered:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event;
Note: See TracChangeset for help on using the changeset viewer.