Changeset 220435 in webkit


Ignore:
Timestamp:
Aug 8, 2017 6:39:37 PM (7 years ago)
Author:
Megan Gardner
Message:

Remove old and unused pointIsInAssistedNode definition
https://bugs.webkit.org/show_bug.cgi?id=175335

Stage removal here to allow removal from UIKit.
Replaced by textInteractionGesture:shouldBeginAtPoint:

Reviewed by Tim Horton.

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

(-[WKContentView pointIsInAssistedNode:]): Deleted.

Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r220425 r220435  
     12017-08-08  Megan Gardner  <megan_gardner@apple.com>
     2
     3        Remove old and unused pointIsInAssistedNode definition
     4        https://bugs.webkit.org/show_bug.cgi?id=175335
     5
     6        Stage removal here to allow removal from UIKit.
     7        Replaced by textInteractionGesture:shouldBeginAtPoint:
     8
     9        Reviewed by Tim Horton.
     10
     11        * Platform/spi/ios/UIKitSPI.h:
     12        * UIProcess/ios/WKContentViewInteraction.mm:
     13        (-[WKContentView pointIsInAssistedNode:]): Deleted.
     14
    1152017-08-08  Michael Catanzaro  <mcatanzaro@igalia.com>
    216
  • trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h

    r220138 r220435  
    604604
    605605- (BOOL)hasSelectablePositionAtPoint:(CGPoint)point;
     606#if __IPHONE_OS_VERSION_MAX_ALLOWED < 110000
    606607- (BOOL)pointIsInAssistedNode:(CGPoint)point;
     608#endif
    607609- (NSArray *)webSelectionRects;
    608610- (void)_cancelLongPressGestureRecognizer;
  • trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm

    r220393 r220435  
    15021502    return _positionInformation.isNearMarkedText;
    15031503}
    1504 
     1504#if __IPHONE_OS_VERSION_MAX_ALLOWED < 110000
    15051505- (BOOL)pointIsInAssistedNode:(CGPoint)point
    15061506{
     
    15081508    return [self textInteractionGesture:UIWKGestureLoupe shouldBeginAtPoint:point];
    15091509}
     1510#endif
    15101511
    15111512- (BOOL)textInteractionGesture:(UIWKGestureType)gesture shouldBeginAtPoint:(CGPoint)point
Note: See TracChangeset for help on using the changeset viewer.