Changeset 245673 in webkit
- Timestamp:
- May 22, 2019, 10:54:43 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/ios/WKSyntheticTapGestureRecognizer.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r245670 r245673 1 2019-05-22 Antoine Quint <graouts@apple.com> 2 3 [tvOS] Build broken by r245639 4 https://bugs.webkit.org/show_bug.cgi?id=198172 5 <rdar://problem/51048991> 6 7 Unreviewed build fix. 8 9 * UIProcess/ios/WKSyntheticTapGestureRecognizer.m: 10 (-[WKSyntheticTapGestureRecognizer reset]): 11 (-[WKSyntheticTapGestureRecognizer touchesEnded:withEvent:]): 12 1 13 2019-05-22 Youenn Fablet <youenn@apple.com> 2 14 -
trunk/Source/WebKit/UIProcess/ios/WKSyntheticTapGestureRecognizer.m
r245639 r245673 71 71 [super reset]; 72 72 [_resetTarget performSelector:_resetAction withObject:self]; 73 #if ENABLE(POINTER_EVENTS) 73 74 _lastActiveTouchIdentifier = nil; 75 #endif 74 76 } 75 77 … … 77 79 { 78 80 [super touchesEnded:touches withEvent:event]; 81 #if ENABLE(POINTER_EVENTS) && HAVE(UI_WEB_TOUCH_EVENTS_GESTURE_RECOGNIZER_WITH_ACTIVE_TOUCHES_BY_ID) 79 82 if (!_supportingWebTouchEventsGestureRecognizer) 80 83 return; 81 84 82 #if ENABLE(POINTER_EVENTS) && HAVE(UI_WEB_TOUCH_EVENTS_GESTURE_RECOGNIZER_WITH_ACTIVE_TOUCHES_BY_ID)83 85 // FIXME: <rdar://problem/48035706> 84 86 NSMapTable<NSNumber *, UITouch *> *activeTouches = [_supportingWebTouchEventsGestureRecognizer activeTouchesByIdentifier];
Note:
See TracChangeset
for help on using the changeset viewer.