RESOLVED FIXED 123904
Add WKBrowsingContextPolicyDelegate
https://bugs.webkit.org/show_bug.cgi?id=123904
Summary Add WKBrowsingContextPolicyDelegate
Sam Weinig
Reported 2013-11-06 11:20:49 PST
Add WKBrowsingContextPolicyDelegate
Attachments
Patch (17.32 KB, patch)
2013-11-06 11:23 PST, Sam Weinig
andersca: review+
Sam Weinig
Comment 1 2013-11-06 11:23:01 PST
Anders Carlsson
Comment 2 2013-11-06 11:26:47 PST
Comment on attachment 216197 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=216197&action=review > Source/WebKit2/UIProcess/API/mac/WKBrowsingContextController.h:46 > +@property (assign) id<WKBrowsingContextLoadDelegate> loadDelegate; > +@property (assign) id<WKBrowsingContextPolicyDelegate> policyDelegate; Space after id > Source/WebKit2/UIProcess/API/mac/WKBrowsingContextController.mm:608 > + WKActionIsMainFrameKey: WKFrameIsMainFrame(frame) ? @YES : @NO, Can just do @(WKFrameIsMainFrame(frame)) > Source/WebKit2/UIProcess/API/mac/WKBrowsingContextController.mm:624 > + WKActionIsMainFrameKey: WKFrameIsMainFrame(frame) ? @YES : @NO, Can just do @(WKFrameIsMainFrame(frame)) > Source/WebKit2/UIProcess/API/mac/WKBrowsingContextPolicyDelegate.h:36 > +extern NSString *WKActionIsMainFrameKey; // NSNumber (BOOL) > +extern NSString *WKActionNavigationTypeKey; // NSNumber (WKNavigationType) > +extern NSString *WKActionMouseButtonKey; // NSNumber (0 for left button, 1 for middle button, 2 for right button) > +extern NSString *WKActionModifierFlagsKey; // NSNumber (unsigned) > +extern NSString *WKActionURLRequestKey; // NSURLRequest > +extern NSString *WKActionURLResponseKey; // NSURLResponse > +extern NSString *WKActionFrameNameKey; // NSString These should have headerdoc like documentation.
Sam Weinig
Comment 3 2013-11-06 11:40:07 PST
Note You need to log in before you can comment on or make changes to this bug.