Changeset 270576 in webkit
- Timestamp:
- Dec 9, 2020, 1:43:07 AM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r270575 r270576 1 2020-12-09 Ryosuke Niwa <rniwa@webkit.org> 2 3 iOS build fix after r270573. 4 5 * UIProcess/WebPageProxy.cpp: 6 (WebKit::WebPageProxy::handlePreventableTouchEvent): 7 1 8 2020-12-09 Per Arne Vollan <pvollan@apple.com> 2 9 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r270575 r270576 2943 2943 m_process->startResponsivenessTimer(); 2944 2944 bool handled = false; 2945 bool replyReceived = sendSync(Messages::WebPage::TouchEventSync(event), Messages::WebPage::TouchEventSync::Reply(handled), 1_s, IPC::SendSyncOption::ForceDispatchWhenDestinationIsWaitingForUnboundedSyncReply);2945 bool replyReceived = !!sendSync(Messages::WebPage::TouchEventSync(event), Messages::WebPage::TouchEventSync::Reply(handled), 1_s, IPC::SendSyncOption::ForceDispatchWhenDestinationIsWaitingForUnboundedSyncReply); 2946 2946 // If the sync request has timed out, we should consider the event handled. The Web Process is too busy to answer any questions, so the default action is also likely to have issues. 2947 2947 if (!replyReceived)
Note:
See TracChangeset
for help on using the changeset viewer.