Changeset 252434 in webkit


Ignore:
Timestamp:
Nov 13, 2019 3:05:00 PM (4 years ago)
Author:
Megan Gardner
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.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r252432 r252434  
     12019-11-13  Megan Gardner  <megan_gardner@apple.com>
     2
     3        Cleanup old UIKit Staging
     4        https://bugs.webkit.org/show_bug.cgi?id=204130
     5
     6        Reviewed by Wenson Hsieh.
     7
     8        Not new tests - linking only.
     9
     10        * Platform/spi/ios/UIKitSPI.h:
     11
     12        Removing old staging code that should be unnecessary now.
     13
    1142019-11-13  Per Arne Vollan  <pvollan@apple.com>
    215
  • trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h

    r251601 r252434  
    3333#import <UIKit/UIBlurEffect_Private.h>
    3434#import <UIKit/UICalloutBar.h>
     35#import <UIKit/UIClickInteraction_Private.h>
     36#import <UIKit/UIClickPresentationInteraction_Private.h>
    3537#import <UIKit/UIColorEffect.h>
     38#import <UIKit/UIContextMenuConfiguration.h>
    3639#import <UIKit/UIDatePicker_Private.h>
    3740#import <UIKit/UIDevice_Private.h>
     
    9396#import <UIKit/UIContextMenuInteraction_ForSpringBoardOnly.h>
    9497#import <UIKit/UIContextMenuInteraction_ForWebKitOnly.h>
     98#import <UIKit/UIContextMenuInteraction_Private.h>
    9599#endif
    96100#endif
     
    380384@end
    381385
     386@interface UIGestureRecognizer ()
     387@property (nonatomic, readonly, getter=_modifierFlags) UIKeyModifierFlags modifierFlags;
     388@end
     389
    382390@interface UITapGestureRecognizer ()
    383391@property (nonatomic, getter=_allowableSeparation, setter=_setAllowableSeparation:) CGFloat allowableSeparation;
     
    442450- (void)activateSelection;
    443451- (void)deactivateSelection;
     452- (void)didEndScrollingOrZooming;
    444453- (void)didEndScrollingOverflow;
    445454- (void)selectionChanged;
    446455- (void)setGestureRecognizers;
     456- (void)willStartScrollingOrZooming;
    447457- (void)willStartScrollingOverflow;
    448458@end
     
    589599};
    590600
    591 @interface UIWebSelectionAssistant : NSObject
    592 @end
    593 
    594601@interface UIWKAutocorrectionRects : NSObject
    595602@end
     
    681688- (void)hideAutoFillButton;
    682689- (void)setClearVisible:(BOOL)flag;
     690- (void)setNextPreviousItemsVisible:(BOOL)visible;
    683691- (void)showAutoFillButtonWithTitle:(NSString *)title;
    684692@property (nonatomic, retain) UIBarButtonItem *_autofill;
     
    702710@interface UIWebGeolocationPolicyDecider ()
    703711+ (instancetype)sharedPolicyDecider;
     712- (void)decidePolicyForGeolocationRequestFromOrigin:(id)securityOrigin requestingURL:(NSURL *)requestingURL view:(UIView *)view listener:(id)listener;
    704713- (void)decidePolicyForGeolocationRequestFromOrigin:(id)securityOrigin requestingURL:(NSURL *)requestingURL window:(UIWindow *)window listener:(id)listener;
    705714@end
     
    10851094@end
    10861095
     1096#if USE(UICONTEXTMENU)
     1097@interface UITargetedPreview ()
     1098@property (nonatomic, strong, setter=_setOverridePositionTrackingView:) UIView *overridePositionTrackingView;
     1099@end
     1100#endif // USE(UICONTEXTMENU)
     1101
     1102#if HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
     1103@interface _UIClickInteraction : NSObject <UIInteraction>
     1104@end
     1105
     1106@interface _UIClickPresentationInteraction : NSObject <UIInteraction>
     1107@end
     1108#endif // HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
     1109
     1110
    10871111#endif // USE(APPLE_INTERNAL_SDK)
    10881112
    1089 @interface UITextInteractionAssistant (Staging_55645619)
    1090 - (void)didEndScrollingOrZooming;
    1091 - (void)willStartScrollingOrZooming;
    1092 @end
    1093 
    1094 @interface UIGestureRecognizer (Staging_45970040)
    1095 @property (nonatomic, readonly, getter=_modifierFlags) UIKeyModifierFlags modifierFlags;
    1096 @end
     1113#if HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
     1114@interface UIContextMenuConfiguration (IPI)
     1115@property (nonatomic, copy) UIContextMenuContentPreviewProvider previewProvider;
     1116@property (nonatomic, copy) UIContextMenuActionProvider actionProvider;
     1117@end
     1118
     1119@protocol _UIClickInteractionDriverDelegate;
     1120@protocol _UIClickInteractionDriving <NSObject>
     1121@property (nonatomic, weak) id <_UIClickInteractionDriverDelegate> delegate;
     1122@end
     1123
     1124@interface _UIClickPresentationInteraction (IPI)
     1125@property (nonatomic, strong) _UIClickInteraction *previewClickInteraction;
     1126@end
     1127
     1128@interface _UIClickInteraction (IPI)
     1129@property (nonatomic, strong) id<_UIClickInteractionDriving> driver;
     1130@end
     1131
     1132@interface UIContextMenuInteraction (IPI)
     1133@property (nonatomic, strong) _UIClickPresentationInteraction *presentationInteraction;
     1134@end
     1135
     1136#endif // HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
    10971137
    10981138@interface UIPhysicalKeyboardEvent : UIPressesEvent
     
    11081148@end
    11091149
    1110 @interface UIWebGeolocationPolicyDecider (Staging_25963823)
    1111 - (void)decidePolicyForGeolocationRequestFromOrigin:(id)securityOrigin requestingURL:(NSURL *)requestingURL view:(UIView *)view listener:(id)listener;
    1112 @end
    1113 
    11141150@interface UIColor (IPI)
    11151151+ (UIColor *)insertionPointColor;
     
    11281164@property (nonatomic) UIView *view;
    11291165@property (nonatomic, assign, getter=_acceptsFailureRequirements, setter=_setAcceptsFailureRequiments:) BOOL _acceptsFailureRequirements;
     1166@property (nonatomic, readonly, getter=_modifierFlags) UIKeyModifierFlags modifierFlags;
    11301167@end
    11311168
     
    11881225#endif
    11891226
    1190 #if USE(UICONTEXTMENU)
    1191 @interface UITargetedPreview (Radar54086338)
    1192 @property (nonatomic, strong, setter=_setOverridePositionTrackingView:) UIView *overridePositionTrackingView;
    1193 @end
    1194 #endif // USE(UICONTEXTMENU)
    1195 
    11961227@interface UIResponder ()
    11971228- (UIResponder *)firstResponder;
     
    12291260}
    12301261
    1231 @interface UIWebFormAccessory (Staging_49666643)
    1232 - (void)setNextPreviousItemsVisible:(BOOL)visible;
    1233 @end
    1234 
    1235 #if HAVE(LINK_PREVIEW) && USE(UICONTEXTMENU)
    1236 @interface UIContextMenuConfiguration (Radar52295535)
    1237 @property (nonatomic, copy) id <NSCopying> identifier;
    1238 @property (nonatomic, copy) UIContextMenuContentPreviewProvider previewProvider;
    1239 @property (nonatomic, copy) UIContextMenuActionProvider actionProvider;
    1240 @end
    1241 
    1242 @protocol _UIClickInteractionDriverDelegate;
    1243 @protocol _UIClickInteractionDriving <NSObject>
    1244 @property (nonatomic, weak) id <_UIClickInteractionDriverDelegate> delegate;
    1245 @end
    1246 
    1247 @class _UIClickPresentationInteraction;
    1248 @interface UIContextMenuInteraction (Radar52298310)
    1249 @property (nonatomic, strong) _UIClickPresentationInteraction *presentationInteraction;
    1250 @end
    1251 
    1252 @interface _UIClickInteraction : NSObject <UIInteraction>
    1253 @end
    1254 
    1255 @interface _UIClickPresentationInteraction : NSObject <UIInteraction>
    1256 @end
    1257 @interface _UIClickPresentationInteraction (Radar52298310)
    1258 @property (nonatomic, strong) _UIClickInteraction *previewClickInteraction;
    1259 @end
    1260 
    1261 @interface _UIClickInteraction (Radar52298310)
    1262 @property (nonatomic, strong) id<_UIClickInteractionDriving> driver;
    1263 @end
    1264 
    1265 #endif
    1266 
    12671262WTF_EXTERN_C_BEGIN
    12681263
Note: See TracChangeset for help on using the changeset viewer.