Replace -[WKWebView adjustedDataInteractionItemProviders:] with a UI delegate method
Created attachment 303023 [details] Patch
Comment on attachment 303023 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=303023&action=review > Source/WebKit2/UIProcess/API/Cocoa/WKUIDelegatePrivate.h:89 > +- (NSArray *)_webView:(WKWebView *)webView adjustedDataInteractionItemProviders:(NSArray *)originalItemProviders WK_API_AVAILABLE(ios(WK_IOS_TBA)); Can the return value and the second argument be a more specific, NSArray<…> *, type?
Created attachment 303176 [details] Patch for landing
(In reply to comment #2) > Comment on attachment 303023 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=303023&action=review > > > Source/WebKit2/UIProcess/API/Cocoa/WKUIDelegatePrivate.h:89 > > +- (NSArray *)_webView:(WKWebView *)webView adjustedDataInteractionItemProviders:(NSArray *)originalItemProviders WK_API_AVAILABLE(ios(WK_IOS_TBA)); > > Can the return value and the second argument be a more specific, NSArray<…> > *, type? Yes! Changed to NSArray<UIItemProvider *>*
Comment on attachment 303176 [details] Patch for landing Clearing flags on attachment: 303176 Committed r213272: <http://trac.webkit.org/changeset/213272>