To support new keyboard architecture.
Created attachment 270527 [details] Patch
Comment on attachment 270527 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=270527&action=review > Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm:2875 > + _keyWebEventHandler = [completionHandler copy]; I think we have a smart pointer for blocks now! > Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm:2885 > + return; Confused. Why do you bail here? Don't we still have to do some of the work below?
(In reply to comment #2) > Comment on attachment 270527 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=270527&action=review > > > Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm:2875 > > + _keyWebEventHandler = [completionHandler copy]; > > I think we have a smart pointer for blocks now! > > > Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm:2885 > > + return; > > Confused. Why do you bail here? Don't we still have to do some of the work > below? No we don't in this case. I'll adopt the BlockPtr.
Committed revision 196037.