Changeset 239052 in webkit


Ignore:
Timestamp:
Dec 10, 2018 2:10:48 PM (5 years ago)
Author:
Wenson Hsieh
Message:

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

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView dropInteraction:sessionDidUpdate:]):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r239049 r239052  
     12018-12-10  Wenson Hsieh  <wenson_hsieh@apple.com>
     2
     3        Unreviewed, fix the iOS build after r239039.
     4        https://bugs.webkit.org/show_bug.cgi?id=192568
     5
     6        * UIProcess/ios/WKContentViewInteraction.mm:
     7        (-[WKContentView dropInteraction:sessionDidUpdate:]):
     8
    192018-12-10  Alex Christensen  <achristensen@webkit.org>
    210
  • trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm

    r239049 r239052  
    58965896    auto proposal = adoptNS([[UIDropProposal alloc] initWithDropOperation:static_cast<UIDropOperation>(operation)]);
    58975897    auto dragHandlingMethod = _page->currentDragHandlingMethod();
    5898     [proposal setPrecise:dragHandlingMethod == DragHandlingMethod::EditPlainText || dragHandlingMethod == DragHandlingMethod::EditRichText];
     5898    [proposal setPrecise:dragHandlingMethod == WebCore::DragHandlingMethod::EditPlainText || dragHandlingMethod == WebCore::DragHandlingMethod::EditRichText];
    58995899    if ([delegate respondsToSelector:@selector(_webView:willUpdateDropProposalToProposal:forSession:)])
    59005900        proposal = [delegate _webView:_webView willUpdateDropProposalToProposal:proposal.get() forSession:session];
Note: See TracChangeset for help on using the changeset viewer.