Title: [239052] trunk/Source/WebKit
Revision
239052
Author
wenson_hs...@apple.com
Date
2018-12-10 14:10:48 -0800 (Mon, 10 Dec 2018)

Log Message

Unreviewed, fix the iOS build after r239039.
https://bugs.webkit.org/show_bug.cgi?id=192568


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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (239051 => 239052)


--- trunk/Source/WebKit/ChangeLog	2018-12-10 22:03:13 UTC (rev 239051)
+++ trunk/Source/WebKit/ChangeLog	2018-12-10 22:10:48 UTC (rev 239052)
@@ -1,3 +1,11 @@
+2018-12-10  Wenson Hsieh  <wenson_hs...@apple.com>
+
+        Unreviewed, fix the iOS build after r239039.
+        https://bugs.webkit.org/show_bug.cgi?id=192568
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+        (-[WKContentView dropInteraction:sessionDidUpdate:]):
+
 2018-12-10  Alex Christensen  <achristen...@webkit.org>
 
         Fix WatchOS build.

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (239051 => 239052)


--- trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2018-12-10 22:03:13 UTC (rev 239051)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2018-12-10 22:10:48 UTC (rev 239052)
@@ -5895,7 +5895,7 @@
 
     auto proposal = adoptNS([[UIDropProposal alloc] initWithDropOperation:static_cast<UIDropOperation>(operation)]);
     auto dragHandlingMethod = _page->currentDragHandlingMethod();
-    [proposal setPrecise:dragHandlingMethod == DragHandlingMethod::EditPlainText || dragHandlingMethod == DragHandlingMethod::EditRichText];
+    [proposal setPrecise:dragHandlingMethod == WebCore::DragHandlingMethod::EditPlainText || dragHandlingMethod == WebCore::DragHandlingMethod::EditRichText];
     if ([delegate respondsToSelector:@selector(_webView:willUpdateDropProposalToProposal:forSession:)])
         proposal = [delegate _webView:_webView willUpdateDropProposalToProposal:proposal.get() forSession:session];
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to