RESOLVED FIXED 157763
Make handleAcceptedCandidate a public function
https://bugs.webkit.org/show_bug.cgi?id=157763
Summary Make handleAcceptedCandidate a public function
Beth Dakin
Reported 2016-05-16 15:51:17 PDT
Make handleAcceptedCandidate a public function so that it can be called from another class. rdar://problem/26206397
Attachments
Patch (9.25 KB, patch)
2016-05-16 15:57 PDT, Beth Dakin
no flags
Patch (21.38 KB, patch)
2016-05-17 15:58 PDT, Beth Dakin
thorton: review+
Beth Dakin
Comment 1 2016-05-16 15:57:24 PDT
Conrad Shultz
Comment 2 2016-05-17 12:43:13 PDT
Comment on attachment 279057 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=279057&action=review Looks good to me, but I'm not a reviewer unfortunately. > Source/WebKit/mac/WebCoreSupport/WebEditorClient.mm:1201 > [m_webView showCandidates:candidates forString:m_paragraphContextForCandidateRequest.get() inRect:rectForSelectionCandidates forSelectedRange:m_rangeForCandidates view:m_webView completionHandler:[weakEditor](NSTextCheckingResult *acceptedCandidate) { Seems like weakEditor is no longer used. > Source/WebKit/mac/WebCoreSupport/WebEditorClient.mm:1202 > + dispatch_async(dispatch_get_main_queue(), ^{ }); Why is this necessary? Can you pass nil as the completion handler (or, failing that, an empty block)? > Source/WebKit/mac/WebCoreSupport/WebEditorClient.mm:1224 > [(WebHTMLView *)view _setSoftSpaceRange:softSpaceRange]; Looks like you could declare softSpaceRange only in the case where the replacement ends in space. Does this properly handle a case where a replacement ends in multiple spaces?
Beth Dakin
Comment 3 2016-05-17 15:57:43 PDT
(In reply to comment #2) > Comment on attachment 279057 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=279057&action=review > > Looks good to me, but I'm not a reviewer unfortunately. > > > Source/WebKit/mac/WebCoreSupport/WebEditorClient.mm:1201 > > [m_webView showCandidates:candidates forString:m_paragraphContextForCandidateRequest.get() inRect:rectForSelectionCandidates forSelectedRange:m_rangeForCandidates view:m_webView completionHandler:[weakEditor](NSTextCheckingResult *acceptedCandidate) { > > Seems like weakEditor is no longer used. Removed it. > > > Source/WebKit/mac/WebCoreSupport/WebEditorClient.mm:1202 > > + dispatch_async(dispatch_get_main_queue(), ^{ }); > > Why is this necessary? Can you pass nil as the completion handler (or, > failing that, an empty block)? > Nil does work. > > Source/WebKit/mac/WebCoreSupport/WebEditorClient.mm:1224 > > [(WebHTMLView *)view _setSoftSpaceRange:softSpaceRange]; > > Looks like you could declare softSpaceRange only in the case where the > replacement ends in space. > > Does this properly handle a case where a replacement ends in multiple spaces? The current behavior matches NSTextView, so in that sense it does properly handle multiple spaces.
Beth Dakin
Comment 4 2016-05-17 15:58:05 PDT
Tim Horton
Comment 5 2016-05-17 16:15:50 PDT
Comment on attachment 279176 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=279176&action=review > Tools/TestWebKitAPI/Tests/mac/ViewWithEditableAreaLeak.mm:41 > +@implementation DoNotLeakWebView This name is global to the project (because ObjC) so you might want something that includes at least part of the name of your test.
Beth Dakin
Comment 6 2016-05-17 16:24:29 PDT
Thanks Tim!
Note You need to log in before you can comment on or make changes to this bug.