Bug 129290

Summary: [Cocoa] Add delegate method for customizing actions on activated elements
Product: WebKit Reporter: mitz
Component: WebKit2Assignee: mitz
Status: RESOLVED FIXED    
Severity: Normal CC: andersca, enrica
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Add -[id <WKUIDelegatePrivate> _webView:actionsForElement:defaultActions:] andersca: review+

Description mitz 2014-02-24 22:58:27 PST
[Cocoa] Add delegate method for customizing actions on activated elements
Comment 1 mitz 2014-02-24 23:06:20 PST
Created attachment 225122 [details]
Add -[id <WKUIDelegatePrivate> _webView:actionsForElement:defaultActions:]
Comment 2 Anders Carlsson 2014-02-25 12:07:52 PST
Comment on attachment 225122 [details]
Add -[id <WKUIDelegatePrivate> _webView:actionsForElement:defaultActions:]

View in context: https://bugs.webkit.org/attachment.cgi?id=225122&action=review

> Source/WebKit2/UIProcess/ios/WKActionSheetAssistant.mm:281
> +    _elementInfo.swap(elementInfo);

_elementInfo = std::move(elementInfo);
Comment 3 mitz 2014-02-25 13:04:58 PST
Committed <http://trac.webkit.org/r164666>.