RESOLVED FIXED 233772
MessageChannel::port1() / port2() should return references instead of pointers
https://bugs.webkit.org/show_bug.cgi?id=233772
Summary MessageChannel::port1() / port2() should return references instead of pointers
Chris Dumez
Reported 2021-12-02 10:36:29 PST
MessageChannel::port1() / port2() should return references instead of pointers.
Attachments
Patch (5.59 KB, patch)
2021-12-02 10:38 PST, Chris Dumez
no flags
Patch (6.69 KB, patch)
2021-12-02 10:39 PST, Chris Dumez
no flags
Patch (6.68 KB, patch)
2021-12-02 10:43 PST, Chris Dumez
no flags
Patch (6.71 KB, patch)
2021-12-02 12:27 PST, Chris Dumez
no flags
Chris Dumez
Comment 1 2021-12-02 10:38:17 PST
Chris Dumez
Comment 2 2021-12-02 10:39:51 PST
Chris Dumez
Comment 3 2021-12-02 10:43:09 PST
Chris Dumez
Comment 4 2021-12-02 12:27:13 PST
EWS
Comment 5 2021-12-02 14:22:56 PST
Committed r286453 (244795@main): <https://commits.webkit.org/244795@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 445760 [details].
Radar WebKit Bug Importer
Comment 6 2021-12-02 14:23:36 PST
Darin Adler
Comment 7 2021-12-02 14:42:56 PST
Comment on attachment 445760 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=445760&action=review > Source/WebCore/dom/MessageChannel.h:43 > + MessagePort& port1() const { return m_ports.first.get(); } > + MessagePort& port2() const { return m_ports.second.get(); } I think the get() calls here are optional. Probably compiles and works without them.
Chris Dumez
Comment 8 2021-12-02 15:05:33 PST
(In reply to Darin Adler from comment #7) > Comment on attachment 445760 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=445760&action=review > > > Source/WebCore/dom/MessageChannel.h:43 > > + MessagePort& port1() const { return m_ports.first.get(); } > > + MessagePort& port2() const { return m_ports.second.get(); } > > I think the get() calls here are optional. Probably compiles and works > without them. Indeed, fixed it via <https://commits.webkit.org/r286456>. Thanks.
Note You need to log in before you can comment on or make changes to this bug.