Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1676)

Unified Diff: Source/modules/mediastream/RTCDataChannel.idl

Issue 21350002: MediaStream API: Update RTCDataChannel to match the specification (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/mediastream/RTCDataChannel.idl
diff --git a/Source/modules/mediastream/RTCDataChannel.idl b/Source/modules/mediastream/RTCDataChannel.idl
index 5abf290e91b38123fd2b99a820ea0eebc65a6e87..b307d37e6e81b9590022efdd238d531e11a5f48a 100644
--- a/Source/modules/mediastream/RTCDataChannel.idl
+++ b/Source/modules/mediastream/RTCDataChannel.idl
@@ -26,7 +26,17 @@
NoInterfaceObject
] interface RTCDataChannel : EventTarget {
readonly attribute DOMString label;
+
+ // DEPRECATED
readonly attribute boolean reliable;
+
+ readonly attribute boolean ordered;
+ readonly attribute unsigned short maxRetransmitTime;
+ readonly attribute unsigned short maxRetransmits;
+ readonly attribute DOMString protocol;
+ readonly attribute boolean negotiated;
+ readonly attribute unsigned short id;
+
readonly attribute DOMString readyState;
readonly attribute unsigned long bufferedAmount;

Powered by Google App Engine
This is Rietveld 408576698