Title: [252434] trunk/Source/WebKit
Revision
252434
Author
[email protected]
Date
2019-11-13 15:05:00 -0800 (Wed, 13 Nov 2019)

Log Message

Cleanup old UIKit Staging
https://bugs.webkit.org/show_bug.cgi?id=204130

Reviewed by Wenson Hsieh.

Not new tests - linking only.

* Platform/spi/ios/UIKitSPI.h:

Removing old staging code that should be unnecessary now.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (252433 => 252434)


--- trunk/Source/WebKit/ChangeLog	2019-11-13 22:56:54 UTC (rev 252433)
+++ trunk/Source/WebKit/ChangeLog	2019-11-13 23:05:00 UTC (rev 252434)
@@ -1,3 +1,16 @@
+2019-11-13  Megan Gardner  <[email protected]>
+
+        Cleanup old UIKit Staging
+        https://bugs.webkit.org/show_bug.cgi?id=204130
+
+        Reviewed by Wenson Hsieh.
+
+        Not new tests - linking only.
+
+        * Platform/spi/ios/UIKitSPI.h:
+
+        Removing old staging code that should be unnecessary now. 
+
 2019-11-13  Per Arne Vollan  <[email protected]>
 
         [iOS] Cannot open camera from websites

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


--- trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2019-11-13 22:56:54 UTC (rev 252433)
+++ trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h	2019-11-13 23:05:00 UTC (rev 252434)
@@ -32,7 +32,10 @@
 #import <UIKit/UIBarButtonItem_Private.h>
 #import <UIKit/UIBlurEffect_Private.h>
 #import <UIKit/UICalloutBar.h>
+#import <UIKit/UIClickInteraction_Private.h>
+#import <UIKit/UIClickPresentationInteraction_Private.h>
 #import <UIKit/UIColorEffect.h>
+#import <UIKit/UIContextMenuConfiguration.h>
 #import <UIKit/UIDatePicker_Private.h>
 #import <UIKit/UIDevice_Private.h>
 #import <UIKit/UIDocumentMenuViewController_Private.h>
@@ -92,6 +95,7 @@
 #if USE(UICONTEXTMENU)
 #import <UIKit/UIContextMenuInteraction_ForSpringBoardOnly.h>
 #import <UIKit/UIContextMenuInteraction_ForWebKitOnly.h>
+#import <UIKit/UIContextMenuInteraction_Private.h>
 #endif
 #endif
 
@@ -379,6 +383,10 @@
 - (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;
@@ -441,9 +449,11 @@
 @interface UITextInteractionAssistant ()
 - (void)activateSelection;
 - (void)deactivateSelection;
+- (void)didEndScrollingOrZooming;
 - (void)didEndScrollingOverflow;
 - (void)selectionChanged;
 - (void)setGestureRecognizers;
+- (void)willStartScrollingOrZooming;
 - (void)willStartScrollingOverflow;
 @end
 
@@ -588,9 +598,6 @@
     UIWKGesturePhraseBoundary = 14,
 };
 
-@interface UIWebSelectionAssistant : NSObject
-@end
-
 @interface UIWKAutocorrectionRects : NSObject
 @end
 
@@ -680,6 +687,7 @@
 @interface UIWebFormAccessory ()
 - (void)hideAutoFillButton;
 - (void)setClearVisible:(BOOL)flag;
+- (void)setNextPreviousItemsVisible:(BOOL)visible;
 - (void)showAutoFillButtonWithTitle:(NSString *)title;
 @property (nonatomic, retain) UIBarButtonItem *_autofill;
 @property (nonatomic, assign) id <UIWebFormAccessoryDelegate> delegate;
@@ -701,6 +709,7 @@
 
 @interface UIWebGeolocationPolicyDecider ()
 + (instancetype)sharedPolicyDecider;
+- (void)decidePolicyForGeolocationRequestFromOrigin:(id)securityOrigin requestingURL:(NSURL *)requestingURL view:(UIView *)view listener:(id)listener;
 - (void)decidePolicyForGeolocationRequestFromOrigin:(id)securityOrigin requestingURL:(NSURL *)requestingURL window:(UIWindow *)window listener:(id)listener;
 @end
 
@@ -1084,17 +1093,48 @@
 @interface _UIContextMenuStyle : NSObject <NSCopying>
 @end
 
+#if USE(UICONTEXTMENU)
+@interface UITargetedPreview ()
+@property (nonatomic, strong, setter=_setOverridePositionTrackingView:) UIView *overridePositionTrackingView;
+@end
+#endif // USE(UICONTEXTMENU)
+
+#if HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
+@interface _UIClickInteraction : NSObject <UIInteraction>
+@end
+
+@interface _UIClickPresentationInteraction : NSObject <UIInteraction>
+@end
+#endif // HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
+
+
 #endif // USE(APPLE_INTERNAL_SDK)
 
-@interface UITextInteractionAssistant (Staging_55645619)
-- (void)didEndScrollingOrZooming;
-- (void)willStartScrollingOrZooming;
+#if HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
+@interface UIContextMenuConfiguration (IPI)
+@property (nonatomic, copy) UIContextMenuContentPreviewProvider previewProvider;
+@property (nonatomic, copy) UIContextMenuActionProvider actionProvider;
 @end
 
-@interface UIGestureRecognizer (Staging_45970040)
-@property (nonatomic, readonly, getter=_modifierFlags) UIKeyModifierFlags modifierFlags;
+@protocol _UIClickInteractionDriverDelegate;
+@protocol _UIClickInteractionDriving <NSObject>
+@property (nonatomic, weak) id <_UIClickInteractionDriverDelegate> delegate;
 @end
 
+@interface _UIClickPresentationInteraction (IPI)
+@property (nonatomic, strong) _UIClickInteraction *previewClickInteraction;
+@end
+
+@interface _UIClickInteraction (IPI)
+@property (nonatomic, strong) id<_UIClickInteractionDriving> driver;
+@end
+
+@interface UIContextMenuInteraction (IPI)
+@property (nonatomic, strong) _UIClickPresentationInteraction *presentationInteraction;
+@end
+
+#endif // HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
+
 @interface UIPhysicalKeyboardEvent : UIPressesEvent
 @end
 
@@ -1107,10 +1147,6 @@
 @property (nonatomic, readonly) NSInteger _gsModifierFlags;
 @end
 
-@interface UIWebGeolocationPolicyDecider (Staging_25963823)
-- (void)decidePolicyForGeolocationRequestFromOrigin:(id)securityOrigin requestingURL:(NSURL *)requestingURL view:(UIView *)view listener:(id)listener;
-@end
-
 @interface UIColor (IPI)
 + (UIColor *)insertionPointColor;
 @end
@@ -1127,6 +1163,7 @@
 - (BOOL)_paused;
 @property (nonatomic) UIView *view;
 @property (nonatomic, assign, getter=_acceptsFailureRequirements, setter=_setAcceptsFailureRequiments:) BOOL _acceptsFailureRequirements;
+@property (nonatomic, readonly, getter=_modifierFlags) UIKeyModifierFlags modifierFlags;
 @end
 
 @interface UIHoverEvent : UIEvent
@@ -1187,12 +1224,6 @@
 @end
 #endif
 
-#if USE(UICONTEXTMENU)
-@interface UITargetedPreview (Radar54086338)
-@property (nonatomic, strong, setter=_setOverridePositionTrackingView:) UIView *overridePositionTrackingView;
-@end
-#endif // USE(UICONTEXTMENU)
-
 @interface UIResponder ()
 - (UIResponder *)firstResponder;
 - (void)pasteAndMatchStyle:(id)sender;
@@ -1228,42 +1259,6 @@
 #endif
 }
 
-@interface UIWebFormAccessory (Staging_49666643)
-- (void)setNextPreviousItemsVisible:(BOOL)visible;
-@end
-
-#if HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
-@interface UIContextMenuConfiguration (Radar52295535)
-@property (nonatomic, copy) id <NSCopying> identifier;
-@property (nonatomic, copy) UIContextMenuContentPreviewProvider previewProvider;
-@property (nonatomic, copy) UIContextMenuActionProvider actionProvider;
-@end
-
-@protocol _UIClickInteractionDriverDelegate;
-@protocol _UIClickInteractionDriving <NSObject>
-@property (nonatomic, weak) id <_UIClickInteractionDriverDelegate> delegate;
-@end
-
-@class _UIClickPresentationInteraction;
-@interface UIContextMenuInteraction (Radar52298310)
-@property (nonatomic, strong) _UIClickPresentationInteraction *presentationInteraction;
-@end
-
-@interface _UIClickInteraction : NSObject <UIInteraction>
-@end
-
-@interface _UIClickPresentationInteraction : NSObject <UIInteraction>
-@end
-@interface _UIClickPresentationInteraction (Radar52298310)
-@property (nonatomic, strong) _UIClickInteraction *previewClickInteraction;
-@end
-
-@interface _UIClickInteraction (Radar52298310)
-@property (nonatomic, strong) id<_UIClickInteractionDriving> driver;
-@end
-
-#endif
-
 WTF_EXTERN_C_BEGIN
 
 BOOL UIKeyboardEnabledInputModesAllowOneToManyShortcuts(void);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to