Closed
Bug 1319542
Opened 8 years ago
Closed 8 years ago
Update pc.createDataChannel's RTCDataChannelInit dict to spec.
Categories
(Core :: WebRTC, defect, P1)
Core
WebRTC
Tracking
()
RESOLVED
FIXED
mozilla53
Tracking | Status | |
---|---|---|
firefox53 | --- | fixed |
People
(Reporter: jib, Assigned: jib)
References
Details
Attachments
(1 file)
While cleaning up PeerConnection.js I'm finding various areas of neglect. createDataChannel is one.
Comment hidden (mozreview-request) |
Updated•8 years ago
|
Rank: 15
Priority: -- → P1
Comment 2•8 years ago
|
||
mozreview-review |
Comment on attachment 8813417 [details]
Bug 1319542 - Update RTCDataChannelInit to spec, and remove support for old deprecated values.
https://reviewboard.mozilla.org/r/94818/#review95340
::: dom/media/PeerConnection.js:1219
(Diff revision 1)
> -
> - // Synchronous since it doesn't block.
> - let channel = this._impl.createDataChannel(
> + return this._impl.createDataChannel(label, protocol, type, ordered,
> + maxPacketLifeTime, maxRetransmits,
> + negotiated, id);
Probably leave the comment
Attachment #8813417 -
Flags: review?(rjesup) → review+
Comment 3•8 years ago
|
||
mozreview-review |
Comment on attachment 8813417 [details]
Bug 1319542 - Update RTCDataChannelInit to spec, and remove support for old deprecated values.
https://reviewboard.mozilla.org/r/94818/#review95344
Attachment #8813417 -
Flags: review?(mrbkap) → review+
Comment hidden (mozreview-request) |
Pushed by jbruaroey@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/f1f8ed76c1e7
Update RTCDataChannelInit to spec, and remove support for old deprecated values. r=jesup,mrbkap
Comment 6•8 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla53
You need to log in
before you can comment on or make changes to this bug.
Description
•