Bug 197710 - Pass insertTextAsync options as a struct
Summary: Pass insertTextAsync options as a struct
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit Misc. (show other bugs)
Version: WebKit Local Build
Hardware: All All
: P2 Normal
Assignee: Daniel Bates
URL:
Keywords: InRadar
Depends on:
Blocks: 197632
  Show dependency treegraph
 
Reported: 2019-05-08 14:08 PDT by Daniel Bates
Modified: 2019-05-08 15:51 PDT (History)
4 users (show)

See Also:


Attachments
Patch (23.50 KB, patch)
2019-05-08 14:37 PDT, Daniel Bates
no flags Details | Formatted Diff | Diff
Patch (23.56 KB, patch)
2019-05-08 15:09 PDT, Daniel Bates
no flags Details | Formatted Diff | Diff
Patch (23.57 KB, patch)
2019-05-08 15:14 PDT, Daniel Bates
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Daniel Bates 2019-05-08 14:08:16 PDT
WebPageProxy::insertTextAsync() is becoming unwieldy to work with given the large number of optional arguments that can be passed and I am eyeing to pass another optional argument towards fixing bug #197632. Let's pass a struct of options instead.
Comment 1 Daniel Bates 2019-05-08 14:37:03 PDT
Created attachment 369424 [details]
Patch
Comment 2 Daniel Bates 2019-05-08 15:09:14 PDT
Created attachment 369427 [details]
Patch
Comment 3 Daniel Bates 2019-05-08 15:14:11 PDT
Created attachment 369431 [details]
Patch
Comment 4 Brent Fulgham 2019-05-08 15:25:30 PDT
Comment on attachment 369431 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=369431&action=review

Looks like a nice simplification. r=me.

> Source/WebKit/Shared/Cocoa/InsertTextOptions.h:36
> +    EditingRangeIsRelativeTo editingRangeIsRelativeTo { EditingRangeIsRelativeTo::EditableRoot };

It might be more space-efficient to move the booleans to the bottom of the struct.
Comment 5 Daniel Bates 2019-05-08 15:47:39 PDT
(In reply to Brent Fulgham from comment #4)
> Comment on attachment 369431 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=369431&action=review
> 
> Looks like a nice simplification. r=me.
> 
> > Source/WebKit/Shared/Cocoa/InsertTextOptions.h:36
> > +    EditingRangeIsRelativeTo editingRangeIsRelativeTo { EditingRangeIsRelativeTo::EditableRoot };
> 
> It might be more space-efficient to move the booleans to the bottom of the
> struct.

It shouldn't make a difference. sizeof(bool) == 1 == sizeof(uint8_t).
Comment 6 Daniel Bates 2019-05-08 15:48:35 PDT
Comment on attachment 369431 [details]
Patch

Clearing flags on attachment: 369431

Committed r245073: <https://trac.webkit.org/changeset/245073>
Comment 7 Daniel Bates 2019-05-08 15:48:36 PDT
All reviewed patches have been landed.  Closing bug.
Comment 8 Radar WebKit Bug Importer 2019-05-08 15:51:40 PDT
<rdar://problem/50600263>