Changeset 241433 in webkit


Ignore:
Timestamp:
Feb 13, 2019 5:46:58 AM (5 years ago)
Author:
graouts@webkit.org
Message:

Move UIWebTouchEventsGestureRecognizer.activeTouchesByIdentifier to SPI
https://bugs.webkit.org/show_bug.cgi?id=194531
<rdar://problem/47714562>

Reviewed by Dean Jackson.

  • Platform/spi/ios/UIKitSPI.h:
  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView cancelPointersForGestureRecognizer:]): We update the referenced Radar since we need to keep the call
to respondsToSelector until the SPI has shipped for OpenSource builds to work.

Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r241432 r241433  
     12019-02-12  Antoine Quint  <graouts@apple.com>
     2
     3        Move UIWebTouchEventsGestureRecognizer.activeTouchesByIdentifier to SPI
     4        https://bugs.webkit.org/show_bug.cgi?id=194531
     5        <rdar://problem/47714562>
     6
     7        Reviewed by Dean Jackson.
     8
     9        * Platform/spi/ios/UIKitSPI.h:
     10        * UIProcess/ios/WKContentViewInteraction.mm:
     11        (-[WKContentView cancelPointersForGestureRecognizer:]): We update the referenced Radar since we need to keep the call
     12        to respondsToSelector until the SPI has shipped for OpenSource builds to work.
     13
    1142019-02-13  Antoine Quint  <graouts@apple.com>
    215
  • trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h

    r241322 r241433  
    769769@property (nonatomic, readonly) UIWebTouchEventType type;
    770770@property (nonatomic, readonly) const struct _UIWebTouchEvent *lastTouchEvent;
     771@property (nonatomic, readonly) NSMapTable<NSNumber *, UITouch *> *activeTouchesByIdentifier;
    771772@end
    772773
     
    10341035
    10351036#endif // USE(APPLE_INTERNAL_SDK)
    1036 
    1037 // FIXME: <rdar://problem/47714562>
    1038 @interface UIWebTouchEventsGestureRecognizer (Staging_47634092)
    1039 @property (nonatomic, readonly) NSMapTable<NSNumber *, UITouch *> *activeTouchesByIdentifier;
    1040 @end
    10411037
    10421038@interface UIGestureRecognizer (Staging_45970040)
  • trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm

    r241322 r241433  
    11571157- (void)cancelPointersForGestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
    11581158{
    1159     // FIXME: <rdar://problem/47714562>
     1159    // FIXME: <rdar://problem/48035706>
    11601160    if (![_touchEventGestureRecognizer respondsToSelector:@selector(activeTouchesByIdentifier)])
    11611161        return;
Note: See TracChangeset for help on using the changeset viewer.