Title: [218894] trunk/Source/WebKit2
Revision
218894
Author
[email protected]
Date
2017-06-28 15:06:45 -0700 (Wed, 28 Jun 2017)

Log Message

dropInteraction:sessionDidEnd: invokes dragEnded with a UIDragOperation rather than a WebCore::DragOperation
https://bugs.webkit.org/show_bug.cgi?id=173935

Reviewed by Tim Horton.

Replaces a use of UIDragOperationNone with DragOperationNone.
Currently, there is no change in behavior since these are currently the same value (0).

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

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (218893 => 218894)


--- trunk/Source/WebKit2/ChangeLog	2017-06-28 21:22:39 UTC (rev 218893)
+++ trunk/Source/WebKit2/ChangeLog	2017-06-28 22:06:45 UTC (rev 218894)
@@ -1,3 +1,16 @@
+2017-06-28  Wenson Hsieh  <[email protected]>
+
+        dropInteraction:sessionDidEnd: invokes dragEnded with a UIDragOperation rather than a WebCore::DragOperation
+        https://bugs.webkit.org/show_bug.cgi?id=173935
+
+        Reviewed by Tim Horton.
+
+        Replaces a use of UIDragOperationNone with DragOperationNone.
+        Currently, there is no change in behavior since these are currently the same value (0).
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+        (-[WKContentView dropInteraction:sessionDidEnd:]):
+
 2017-06-28  Alex Christensen  <[email protected]>
 
         WebsitePolicies given with navigation policy for redirects should apply to the provisional document

Modified: trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm (218893 => 218894)


--- trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm	2017-06-28 21:22:39 UTC (rev 218893)
+++ trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm	2017-06-28 22:06:45 UTC (rev 218894)
@@ -4796,7 +4796,7 @@
     CGPoint client;
     [self computeClientAndGlobalPointsForDropSession:session outClientPoint:&client outGlobalPoint:&global];
     [self cleanUpDragSourceSessionState];
-    _page->dragEnded(roundedIntPoint(client), roundedIntPoint(global), UIDragOperationNone);
+    _page->dragEnded(roundedIntPoint(client), roundedIntPoint(global), DragOperationNone);
 }
 
 #pragma mark - Unit testing support
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to