Bug 129290 - [Cocoa] Add delegate method for customizing actions on activated elements
Summary: [Cocoa] Add delegate method for customizing actions on activated elements
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit2 (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: mitz
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-02-24 22:58 PST by mitz
Modified: 2014-02-25 13:04 PST (History)
2 users (show)

See Also:


Attachments
Add -[id <WKUIDelegatePrivate> _webView:actionsForElement:defaultActions:] (19.83 KB, patch)
2014-02-24 23:06 PST, mitz
andersca: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
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>.