Changeset 245679 in webkit
- Timestamp:
- May 23, 2019, 1:39:39 AM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 7 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebPageProxy.cpp (modified) (1 diff)
-
UIProcess/WebPageProxy.h (modified) (2 diffs)
-
UIProcess/ios/WebPageProxyIOS.mm (modified) (1 diff)
-
WebProcess/WebPage/WebPage.cpp (modified) (1 diff)
-
WebProcess/WebPage/WebPage.h (modified) (2 diffs)
-
WebProcess/WebPage/ios/WebPageIOS.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r245678 r245679 1 2019-05-23 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/WebPageProxy.cpp: 10 (WebKit::WebPageProxy::touchWithIdentifierWasRemoved): 11 * UIProcess/WebPageProxy.h: 12 * UIProcess/ios/WebPageProxyIOS.mm: 13 (WebKit::WebPageProxy::touchWithIdentifierWasRemoved): Deleted. 14 * WebProcess/WebPage/WebPage.cpp: 15 (WebKit::WebPage::touchWithIdentifierWasRemoved): 16 * WebProcess/WebPage/WebPage.h: 17 * WebProcess/WebPage/ios/WebPageIOS.mm: 18 (WebKit::WebPage::touchWithIdentifierWasRemoved): Deleted. 19 1 20 2019-05-23 Antoine Quint <graouts@apple.com> 2 21 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r245601 r245679 2711 2711 m_process->send(Messages::WebPage::CancelPointer(pointerId, documentPoint), m_pageID); 2712 2712 } 2713 2714 void WebPageProxy::touchWithIdentifierWasRemoved(WebCore::PointerID pointerId) 2715 { 2716 m_process->send(Messages::WebPage::TouchWithIdentifierWasRemoved(pointerId), m_pageID); 2717 } 2713 2718 #endif 2714 2719 -
trunk/Source/WebKit/UIProcess/WebPageProxy.h
r245639 r245679 839 839 #if ENABLE(POINTER_EVENTS) 840 840 void cancelPointer(WebCore::PointerID, const WebCore::IntPoint&); 841 void touchWithIdentifierWasRemoved(WebCore::PointerID); 841 842 #endif 842 843 … … 1212 1213 #if PLATFORM(IOS_FAMILY) 1213 1214 void willStartUserTriggeredZooming(); 1214 1215 #if ENABLE(POINTER_EVENTS)1216 void touchWithIdentifierWasRemoved(WebCore::PointerID);1217 #endif1218 1215 1219 1216 void potentialTapAtPosition(const WebCore::FloatPoint&, bool shouldRequestMagnificationInformation, uint64_t& requestID); -
trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm
r245639 r245679 837 837 } 838 838 839 #if ENABLE(POINTER_EVENTS)840 void WebPageProxy::touchWithIdentifierWasRemoved(WebCore::PointerID pointerId)841 {842 process().send(Messages::WebPage::TouchWithIdentifierWasRemoved(pointerId), m_pageID);843 }844 #endif845 846 839 void WebPageProxy::potentialTapAtPosition(const WebCore::FloatPoint& position, bool shouldRequestMagnificationInformation, uint64_t& requestID) 847 840 { -
trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp
r245660 r245679 2954 2954 m_page->pointerCaptureController().cancelPointer(pointerId, documentPoint); 2955 2955 } 2956 2957 void WebPage::touchWithIdentifierWasRemoved(WebCore::PointerID pointerId) 2958 { 2959 m_page->pointerCaptureController().touchWithIdentifierWasRemoved(pointerId); 2960 } 2956 2961 #endif 2957 2962 -
trunk/Source/WebKit/WebProcess/WebPage/WebPage.h
r245660 r245679 623 623 bool hasStablePageScaleFactor() const { return m_hasStablePageScaleFactor; } 624 624 625 #if ENABLE(POINTER_EVENTS)626 void touchWithIdentifierWasRemoved(WebCore::PointerID);627 #endif628 629 625 void handleTap(const WebCore::IntPoint&, OptionSet<WebKit::WebEvent::Modifier>, uint64_t lastLayerTreeTransactionId); 630 626 void potentialTapAtPosition(uint64_t requestID, const WebCore::FloatPoint&, bool shouldRequestMagnificationInformation); … … 1324 1320 #if ENABLE(POINTER_EVENTS) 1325 1321 void cancelPointer(WebCore::PointerID, const WebCore::IntPoint&); 1322 void touchWithIdentifierWasRemoved(WebCore::PointerID); 1326 1323 #endif 1327 1324 -
trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm
r245639 r245679 1037 1037 } 1038 1038 1039 #if ENABLE(POINTER_EVENTS)1040 void WebPage::touchWithIdentifierWasRemoved(WebCore::PointerID pointerId)1041 {1042 m_page->pointerCaptureController().touchWithIdentifierWasRemoved(pointerId);1043 }1044 #endif1045 1046 1039 void WebPage::inspectorNodeSearchMovedToPosition(const FloatPoint& position) 1047 1040 {
Note:
See TracChangeset
for help on using the changeset viewer.