Title: [256546] branches/safari-609.1.17.0-branch/Source/WebKit
Revision
256546
Author
[email protected]
Date
2020-02-13 14:52:27 -0800 (Thu, 13 Feb 2020)

Log Message

Cherry-pick r255664. rdar://problem/59299338

    Add a WebKitAdditions hook to provide additional customizations to UIDragInteraction
    https://bugs.webkit.org/show_bug.cgi?id=207177
    <rdar://problem/59121266>

    Reviewed by Tim Horton.

    Add a WebKitAdditions extension point that runs immediately after setting up UIDragInteraction and
    UIDropInteraction.

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

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@255664 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-609.1.17.0-branch/Source/WebKit/ChangeLog (256545 => 256546)


--- branches/safari-609.1.17.0-branch/Source/WebKit/ChangeLog	2020-02-13 22:52:24 UTC (rev 256545)
+++ branches/safari-609.1.17.0-branch/Source/WebKit/ChangeLog	2020-02-13 22:52:27 UTC (rev 256546)
@@ -1,5 +1,38 @@
 2020-02-13  Russell Epstein  <[email protected]>
 
+        Cherry-pick r255664. rdar://problem/59299338
+
+    Add a WebKitAdditions hook to provide additional customizations to UIDragInteraction
+    https://bugs.webkit.org/show_bug.cgi?id=207177
+    <rdar://problem/59121266>
+    
+    Reviewed by Tim Horton.
+    
+    Add a WebKitAdditions extension point that runs immediately after setting up UIDragInteraction and
+    UIDropInteraction.
+    
+    * UIProcess/ios/WKContentViewInteraction.mm:
+    (-[WKContentView setupDragAndDropInteractions]):
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@255664 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-02-03  Wenson Hsieh  <[email protected]>
+
+            Add a WebKitAdditions hook to provide additional customizations to UIDragInteraction
+            https://bugs.webkit.org/show_bug.cgi?id=207177
+            <rdar://problem/59121266>
+
+            Reviewed by Tim Horton.
+
+            Add a WebKitAdditions extension point that runs immediately after setting up UIDragInteraction and
+            UIDropInteraction.
+
+            * UIProcess/ios/WKContentViewInteraction.mm:
+            (-[WKContentView setupDragAndDropInteractions]):
+
+2020-02-13  Russell Epstein  <[email protected]>
+
         Cherry-pick r255658. rdar://problem/59299333
 
     Unreviewed, fix the internal build after <rdar://problem/59132944>

Modified: branches/safari-609.1.17.0-branch/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (256545 => 256546)


--- branches/safari-609.1.17.0-branch/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2020-02-13 22:52:24 UTC (rev 256545)
+++ branches/safari-609.1.17.0-branch/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2020-02-13 22:52:27 UTC (rev 256546)
@@ -6868,6 +6868,10 @@
     [_dragInteraction _setLiftDelay:self.dragLiftDelay];
     [_dragInteraction setEnabled:shouldEnableDragInteractionForPolicy(self.webView._dragInteractionPolicy)];
 
+#if USE(APPLE_INTERNAL_SDK)
+    [self _performAdditionalSetupDragAndDropInteractions];
+#endif
+
     [self addInteraction:_dragInteraction.get()];
     [self addInteraction:_dropInteraction.get()];
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to