Title: [272836] trunk/Source/WebKit
Revision
272836
Author
a...@apple.com
Date
2021-02-13 12:35:07 -0800 (Sat, 13 Feb 2021)

Log Message

Unreviewed build fix.

* UIProcess/ios/WKContentViewInteraction.mm:
(-[WKContentView pointerInteraction:styleForRegion:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (272835 => 272836)


--- trunk/Source/WebKit/ChangeLog	2021-02-13 19:13:12 UTC (rev 272835)
+++ trunk/Source/WebKit/ChangeLog	2021-02-13 20:35:07 UTC (rev 272836)
@@ -1,3 +1,10 @@
+2021-02-13  Alexey Proskuryakov  <a...@apple.com>
+
+        Unreviewed build fix.
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+        (-[WKContentView pointerInteraction:styleForRegion:]):
+
 2021-02-12  Yusuke Suzuki  <ysuz...@apple.com>
 
         [JSC] Enable JITCage on macOS

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (272835 => 272836)


--- trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2021-02-13 19:13:12 UTC (rev 272835)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2021-02-13 20:35:07 UTC (rev 272836)
@@ -9192,8 +9192,10 @@
     if (_positionInformation.cursor && [region.identifier isEqual:pointerRegionIdentifier]) {
         WebCore::Cursor::Type cursorType = _positionInformation.cursor->type();
 
+        ALLOW_DEPRECATED_DECLARATIONS_BEGIN
         if (cursorType == WebCore::Cursor::Hand)
             return [UIPointerStyle _systemPointerStyle];
+        ALLOW_DEPRECATED_DECLARATIONS_END
 
         if (cursorType == WebCore::Cursor::IBeam && _positionInformation.lineCaretExtent.contains(_positionInformation.request.point))
             return iBeamCursor();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to