From 4c5fb4bf67526282242f4e37918a23ec56cb4ce4 Mon Sep 17 00:00:00 2001 From: "wenson_hsieh@apple.com" Date: Mon, 10 Dec 2018 22:10:48 +0000 Subject: [PATCH] Unreviewed, fix the iOS build after r239039. https://bugs.webkit.org/show_bug.cgi?id=192568 * UIProcess/ios/WKContentViewInteraction.mm: (-[WKContentView dropInteraction:sessionDidUpdate:]): git-svn-id: https://svn.webkit.org/repository/webkit/trunk@239052 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebKit/ChangeLog | 8 ++++++++ Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Source/WebKit/ChangeLog b/Source/WebKit/ChangeLog index 88c77f61..5134476 100644 --- a/Source/WebKit/ChangeLog +++ b/Source/WebKit/ChangeLog @@ -1,3 +1,11 @@ +2018-12-10 Wenson Hsieh + + 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 Fix WatchOS build. diff --git a/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm b/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm index 5ed3b0d..e39ea5e 100644 --- a/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm +++ b/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm @@ -5895,7 +5895,7 @@ static NSArray *extractItemProvidersFromDropSession(id (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]; -- 1.8.3.1