Title: [241276] trunk/Source/WebKit
Revision
241276
Author
[email protected]
Date
2019-02-11 12:43:03 -0800 (Mon, 11 Feb 2019)

Log Message

Fix internal iOS build after r241272
https://bugs.webkit.org/show_bug.cgi?id=191446

* Platform/spi/ios/UIKitSPI.h:
Declare the _modifierFlags when using the internal SDK also.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (241275 => 241276)


--- trunk/Source/WebKit/ChangeLog	2019-02-11 19:30:05 UTC (rev 241275)
+++ trunk/Source/WebKit/ChangeLog	2019-02-11 20:43:03 UTC (rev 241276)
@@ -1,3 +1,11 @@
+2019-02-11  Alex Christensen  <[email protected]>
+
+        Fix internal iOS build after r241272
+        https://bugs.webkit.org/show_bug.cgi?id=191446
+
+        * Platform/spi/ios/UIKitSPI.h:
+        Declare the _modifierFlags when using the internal SDK also.
+
 2019-02-11  Wenson Hsieh  <[email protected]>
 
         fast/forms/ios/force-gregorian-calendar-for-credit-card-expiry.html does not work on iPad

Modified: trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h (241275 => 241276)


--- trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2019-02-11 19:30:05 UTC (rev 241275)
+++ trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2019-02-11 20:43:03 UTC (rev 241276)
@@ -358,10 +358,6 @@
 - (CGSize)_legacy_sizeWithFont:(UIFont *)font minFontSize:(CGFloat)minFontSize actualFontSize:(CGFloat *)actualFontSize forWidth:(CGFloat)width lineBreakMode:(NSLineBreakMode)lineBreakMode;
 @end
 
-@interface UIGestureRecognizer ()
-@property (nonatomic, readonly, getter=_modifierFlags) UIKeyModifierFlags modifierFlags;
-@end
-
 @interface UITapGestureRecognizer ()
 @property (nonatomic, getter=_allowableSeparation, setter=_setAllowableSeparation:) CGFloat allowableSeparation;
 @property (nonatomic, readonly) CGPoint location;
@@ -1036,6 +1032,10 @@
 
 #endif // USE(APPLE_INTERNAL_SDK)
 
+@interface UIGestureRecognizer ()
+@property (nonatomic, readonly, getter=_modifierFlags) UIKeyModifierFlags modifierFlags;
+@end
+
 // FIXME: <rdar://problem/47714562>
 @interface UIWebTouchEventsGestureRecognizer (Staging_47634092)
 @property (nonatomic, readonly) NSMapTable<NSNumber *, UITouch *> *activeTouchesByIdentifier;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to