forked from WebKit/WebKit-http
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MediaStream API: Update RTCDataChannel to match the specification
https://bugs.webkit.org/show_bug.cgi?id=120889 Patch by Thiago de Barros Lacerda <[email protected]> on 2013-09-14 Reviewed by Eric Carlson Merged from https://chromium.googlesource.com/chromium/blink/+/c3862b0a83e20fc8b1f770c7e4a886a7cceb80d2 by Tommy Widenflycht. According to WebRTC specification, RTCDataChannel must have the following new attributes: boolean ordered unsigned short maxRetransmitTime unsigned short maxRetransmits DOMString protocol boolean negotiated unsigned short id and the following one was deprecated: boolean reliable Test updates will be landed with https://webkit.org/b/121102. * Modules/mediastream/RTCDataChannel.cpp: (WebCore::RTCDataChannel::ordered): (WebCore::RTCDataChannel::maxRetransmitTime): (WebCore::RTCDataChannel::maxRetransmits): (WebCore::RTCDataChannel::protocol): (WebCore::RTCDataChannel::negotiated): (WebCore::RTCDataChannel::id): * Modules/mediastream/RTCDataChannel.h: * Modules/mediastream/RTCDataChannel.idl: * platform/mediastream/RTCDataChannelHandler.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@155792 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
4917883
commit d944159
Showing
5 changed files
with
79 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,37 @@ | ||
2013-09-14 Thiago de Barros Lacerda <[email protected]> | ||
|
||
MediaStream API: Update RTCDataChannel to match the specification | ||
https://bugs.webkit.org/show_bug.cgi?id=120889 | ||
|
||
Reviewed by Eric Carlson | ||
|
||
Merged from https://chromium.googlesource.com/chromium/blink/+/c3862b0a83e20fc8b1f770c7e4a886a7cceb80d2 | ||
by Tommy Widenflycht. | ||
|
||
According to WebRTC specification, RTCDataChannel must have the following new attributes: | ||
boolean ordered | ||
unsigned short maxRetransmitTime | ||
unsigned short maxRetransmits | ||
DOMString protocol | ||
boolean negotiated | ||
unsigned short id | ||
|
||
and the following one was deprecated: | ||
boolean reliable | ||
|
||
Test updates will be landed with https://webkit.org/b/121102. | ||
|
||
* Modules/mediastream/RTCDataChannel.cpp: | ||
(WebCore::RTCDataChannel::ordered): | ||
(WebCore::RTCDataChannel::maxRetransmitTime): | ||
(WebCore::RTCDataChannel::maxRetransmits): | ||
(WebCore::RTCDataChannel::protocol): | ||
(WebCore::RTCDataChannel::negotiated): | ||
(WebCore::RTCDataChannel::id): | ||
* Modules/mediastream/RTCDataChannel.h: | ||
* Modules/mediastream/RTCDataChannel.idl: | ||
* platform/mediastream/RTCDataChannelHandler.h: | ||
|
||
2013-09-14 Sam Weinig <[email protected]> | ||
|
||
[CTTE] Node subclasses should take a Document by reference in their constructor (Part 4) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters