WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
126479
Add support to retrieve the autocorrection context in WK2
https://bugs.webkit.org/show_bug.cgi?id=126479
Summary
Add support to retrieve the autocorrection context in WK2
Enrica Casucci
Reported
2014-01-03 17:48:05 PST
This bug tracks the work required to retrieve the context for autocorrection and IME on iOS.
Attachments
Patch
(25.23 KB, patch)
2014-01-03 17:52 PST
,
Enrica Casucci
sam
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Enrica Casucci
Comment 1
2014-01-03 17:52:53 PST
Created
attachment 220361
[details]
Patch
Sam Weinig
Comment 2
2014-01-03 18:17:13 PST
Comment on
attachment 220361
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=220361&action=review
> Source/WebKit2/UIProcess/AutoCorrectionCallback.h:118 > +private: > + > + AutocorrectionContextCallback(void* context, CallbackFunction callback)
Exra newline.
> Source/WebKit2/UIProcess/API/ios/WKInteractionView.mm:1643 > + WKAutocorrectionContext *context =[[WKAutocorrectionContext alloc] init];
Missing space after the =.
> Source/WebKit2/UIProcess/API/ios/WKInteractionView.mm:1652 > + if (beforeText && [beforeText length]) > + context.contextBeforeSelection = [beforeText copy]; > + if (selectedText && [selectedText length]) > + context.selectedText = [selectedText copy]; > + if (markedText && [markedText length]) > + context.markedText = [markedText copy]; > + if (afterText && [afterText length]) > + context.contextAfterSelection = [afterText copy];
I think calling length when the NSString is nil is fine, no need to nil check them.
> Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm:725 > +static void computeAutocorrectionContext(Frame& frame, String& contextBefore, String& markedText, String& selectedText, String& contextAfter, NSRange& selectedRangeInMarkedText)
Is this all new code or is it a version of something elsewhere? If it is kind of duplicated, can we move this down into WebCore/?
> Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm:792 > + NSRange selectedRangeInMarkedText;
I don't see a great reason to use NSRange here. Can we just use a pair of uint64_ts?
Enrica Casucci
Comment 3
2014-01-06 10:52:16 PST
Thanks for the review. I'll address your comments.
> Is this all new code or is it a version of something elsewhere? If it is kind of duplicated, can we move this down into WebCore/?
This is all new code.
> > > Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm:792 > > + NSRange selectedRangeInMarkedText; > > I don't see a great reason to use NSRange here. Can we just use a pair of uint64_ts?.
Sure.
Enrica Casucci
Comment 4
2014-01-06 14:22:36 PST
Committed 161358.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug