⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 245679 in webkit


Ignore:
Timestamp:
May 23, 2019, 1:39:39 AM (7 years ago)
Author:
graouts@webkit.org
Message:

[tvOS] Build broken by r245639
https://bugs.webkit.org/show_bug.cgi?id=198172
<rdar://problem/51048991>

Unreviewed build fix.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::touchWithIdentifierWasRemoved):

  • UIProcess/WebPageProxy.h:
  • UIProcess/ios/WebPageProxyIOS.mm:

(WebKit::WebPageProxy::touchWithIdentifierWasRemoved): Deleted.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::touchWithIdentifierWasRemoved):

  • WebProcess/WebPage/WebPage.h:
  • WebProcess/WebPage/ios/WebPageIOS.mm:

(WebKit::WebPage::touchWithIdentifierWasRemoved): Deleted.

Location:
trunk/Source/WebKit
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r245678 r245679  
     12019-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
    1202019-05-23  Antoine Quint  <graouts@apple.com>
    221
  • trunk/Source/WebKit/UIProcess/WebPageProxy.cpp

    r245601 r245679  
    27112711    m_process->send(Messages::WebPage::CancelPointer(pointerId, documentPoint), m_pageID);
    27122712}
     2713
     2714void WebPageProxy::touchWithIdentifierWasRemoved(WebCore::PointerID pointerId)
     2715{
     2716    m_process->send(Messages::WebPage::TouchWithIdentifierWasRemoved(pointerId), m_pageID);
     2717}
    27132718#endif
    27142719
  • trunk/Source/WebKit/UIProcess/WebPageProxy.h

    r245639 r245679  
    839839#if ENABLE(POINTER_EVENTS)
    840840    void cancelPointer(WebCore::PointerID, const WebCore::IntPoint&);
     841    void touchWithIdentifierWasRemoved(WebCore::PointerID);
    841842#endif
    842843
     
    12121213#if PLATFORM(IOS_FAMILY)
    12131214    void willStartUserTriggeredZooming();
    1214 
    1215 #if ENABLE(POINTER_EVENTS)
    1216     void touchWithIdentifierWasRemoved(WebCore::PointerID);
    1217 #endif
    12181215
    12191216    void potentialTapAtPosition(const WebCore::FloatPoint&, bool shouldRequestMagnificationInformation, uint64_t& requestID);
  • trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm

    r245639 r245679  
    837837}
    838838
    839 #if ENABLE(POINTER_EVENTS)
    840 void WebPageProxy::touchWithIdentifierWasRemoved(WebCore::PointerID pointerId)
    841 {
    842     process().send(Messages::WebPage::TouchWithIdentifierWasRemoved(pointerId), m_pageID);
    843 }
    844 #endif
    845 
    846839void WebPageProxy::potentialTapAtPosition(const WebCore::FloatPoint& position, bool shouldRequestMagnificationInformation, uint64_t& requestID)
    847840{
  • trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp

    r245660 r245679  
    29542954    m_page->pointerCaptureController().cancelPointer(pointerId, documentPoint);
    29552955}
     2956
     2957void WebPage::touchWithIdentifierWasRemoved(WebCore::PointerID pointerId)
     2958{
     2959    m_page->pointerCaptureController().touchWithIdentifierWasRemoved(pointerId);
     2960}
    29562961#endif
    29572962
  • trunk/Source/WebKit/WebProcess/WebPage/WebPage.h

    r245660 r245679  
    623623    bool hasStablePageScaleFactor() const { return m_hasStablePageScaleFactor; }
    624624
    625 #if ENABLE(POINTER_EVENTS)
    626     void touchWithIdentifierWasRemoved(WebCore::PointerID);
    627 #endif
    628 
    629625    void handleTap(const WebCore::IntPoint&, OptionSet<WebKit::WebEvent::Modifier>, uint64_t lastLayerTreeTransactionId);
    630626    void potentialTapAtPosition(uint64_t requestID, const WebCore::FloatPoint&, bool shouldRequestMagnificationInformation);
     
    13241320#if ENABLE(POINTER_EVENTS)
    13251321    void cancelPointer(WebCore::PointerID, const WebCore::IntPoint&);
     1322    void touchWithIdentifierWasRemoved(WebCore::PointerID);
    13261323#endif
    13271324
  • trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm

    r245639 r245679  
    10371037}
    10381038
    1039 #if ENABLE(POINTER_EVENTS)
    1040 void WebPage::touchWithIdentifierWasRemoved(WebCore::PointerID pointerId)
    1041 {
    1042     m_page->pointerCaptureController().touchWithIdentifierWasRemoved(pointerId);
    1043 }
    1044 #endif
    1045 
    10461039void WebPage::inspectorNodeSearchMovedToPosition(const FloatPoint& position)
    10471040{
Note: See TracChangeset for help on using the changeset viewer.