Changeset 201869 in webkit


Ignore:
Timestamp:
Jun 9, 2016 10:07:06 AM (8 years ago)
Author:
ddkilzer@apple.com
Message:

Update properties for UIWKTextInteractionAssistant
<https://webkit.org/b/158559>

Reviewed by Darin Adler.

  • Platform/spi/ios/UIKitSPI.h:

(UIWKTextInteractionAssistant.loupeGesture):
(UIWKTextInteractionAssistant.singleTapGesture):
Change from retain to assign since UIWKTextInteractionAssistant
is not responsible for their lifetime. Sort alphabetically.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r201863 r201869  
     12016-06-09  David Kilzer  <ddkilzer@apple.com>
     2
     3        Update properties for UIWKTextInteractionAssistant
     4        <https://webkit.org/b/158559>
     5
     6        Reviewed by Darin Adler.
     7
     8        * Platform/spi/ios/UIKitSPI.h:
     9        (UIWKTextInteractionAssistant.loupeGesture):
     10        (UIWKTextInteractionAssistant.singleTapGesture):
     11        Change from retain to assign since UIWKTextInteractionAssistant
     12        is not responsible for their lifetime.  Sort alphabetically.
     13
    1142016-06-09  Michael Saboff  <msaboff@apple.com>
    215
  • trunk/Source/WebKit2/Platform/spi/ios/UIKitSPI.h

    r201199 r201869  
    542542- (void)hideTextStyleOptions;
    543543
    544 @property (nonatomic, readonly, retain) UITapGestureRecognizer *singleTapGesture;
    545 @property (nonatomic, readonly, retain) UILongPressGestureRecognizer *loupeGesture;
     544@property (nonatomic, readonly, assign) UILongPressGestureRecognizer *loupeGesture;
     545@property (nonatomic, readonly, assign) UITapGestureRecognizer *singleTapGesture;
    546546@end
    547547
Note: See TracChangeset for help on using the changeset viewer.