WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
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
Details
Formatted Diff
Diff
Patch
(6.69 KB, patch)
2021-12-02 10:39 PST
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(6.68 KB, patch)
2021-12-02 10:43 PST
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(6.71 KB, patch)
2021-12-02 12:27 PST
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
Chris Dumez
Comment 1
2021-12-02 10:38:17 PST
Created
attachment 445738
[details]
Patch
Chris Dumez
Comment 2
2021-12-02 10:39:51 PST
Created
attachment 445740
[details]
Patch
Chris Dumez
Comment 3
2021-12-02 10:43:09 PST
Created
attachment 445742
[details]
Patch
Chris Dumez
Comment 4
2021-12-02 12:27:13 PST
Created
attachment 445760
[details]
Patch
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
<
rdar://problem/85989068
>
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.
Top of Page
Format For Printing
XML
Clone This Bug