Changeset 270576 in webkit


Ignore:
Timestamp:
Dec 9, 2020, 1:43:07 AM (5 years ago)
Author:
rniwa@webkit.org
Message:

iOS build fix after r270573.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::handlePreventableTouchEvent):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r270575 r270576  
     12020-12-09  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        iOS build fix after r270573.
     4
     5        * UIProcess/WebPageProxy.cpp:
     6        (WebKit::WebPageProxy::handlePreventableTouchEvent):
     7
    182020-12-09  Per Arne Vollan  <pvollan@apple.com>
    29
  • trunk/Source/WebKit/UIProcess/WebPageProxy.cpp

    r270575 r270576  
    29432943    m_process->startResponsivenessTimer();
    29442944    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);
    29462946    // 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.
    29472947    if (!replyReceived)
Note: See TracChangeset for help on using the changeset viewer.