Closed
Bug 1294645
Opened 9 years ago
Closed 9 years ago
Don't use NS_CALLBACK for callbacks in nsI{Input,Output,UnicharInput},Stream.idl
Categories
(Core :: XPCOM, defect)
Core
XPCOM
Tracking
()
RESOLVED
FIXED
mozilla51
Tracking | Status | |
---|---|---|
firefox51 | --- | fixed |
People
(Reporter: n.nethercote, Assigned: n.nethercote)
References
Details
Attachments
(1 file)
84.87 KB,
patch
|
froydnj
:
review+
|
Details | Diff | Splinter Review |
Slightly less than half (93 / 210) of the NS_METHOD instances in the codebase
are because of the use of NS_CALLBACK in
nsI{Input,Output,UnicharInput},Stream.idl. The use of __stdcall on Win32 isn't
important for these callbacks because they are only used as arguments to
[noscript] methods.
This patch converts them to vanilla |nsresult| functions. It increases the size
of xul.dll by about ~600 bytes, which is about 0.001%.
![]() |
Assignee | |
Comment 1•9 years ago
|
||
Attachment #8780414 -
Flags: review?(nfroyd)
![]() |
Assignee | |
Comment 2•9 years ago
|
||
Try's looking good: https://treeherder.mozilla.org/#/jobs?repo=try&revision=7464e5386229
![]() |
||
Comment 3•9 years ago
|
||
Comment on attachment 8780414 [details] [diff] [review]
Don't use NS_CALLBACK for callbacks in nsI{Input,Output,UnicharInput},Stream.idl
Review of attachment 8780414 [details] [diff] [review]:
-----------------------------------------------------------------
Thanks for including the size comparison. :) One less thing to think about when using these classes and callbacks--which always confuse me.
Attachment #8780414 -
Flags: review?(nfroyd) → review+
![]() |
Assignee | |
Comment 4•9 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/360df5276cf6e2d7294ce0e122952cf56bc5372e
Bug 1294645 - Don't use NS_CALLBACK for callbacks in nsI{Input,Output,UnicharInput},Stream.idl. r=froydnj.
Comment 5•9 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
status-firefox51:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla51
You need to log in
before you can comment on or make changes to this bug.
Description
•