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

Unified Diff: modules/mediastream/RTCDataChannel.idl

Issue 23014006: Roll IDL to multivm@1350 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 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
« no previous file with comments | « modules/mediastream/RTCDTMFSender.idl ('k') | modules/mediastream/RTCPeerConnection.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/mediastream/RTCDataChannel.idl
diff --git a/modules/mediastream/RTCDataChannel.idl b/modules/mediastream/RTCDataChannel.idl
index 5abf290e91b38123fd2b99a820ea0eebc65a6e87..f826fb1696ec7d9c91028ed8e3e3eda95a182da6 100644
--- a/modules/mediastream/RTCDataChannel.idl
+++ b/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;
@@ -39,8 +49,8 @@
void close();
- attribute EventListener onopen;
- attribute EventListener onerror;
- attribute EventListener onclose;
- attribute EventListener onmessage;
+ attribute EventHandler onopen;
+ attribute EventHandler onerror;
+ attribute EventHandler onclose;
+ attribute EventHandler onmessage;
};
« no previous file with comments | « modules/mediastream/RTCDTMFSender.idl ('k') | modules/mediastream/RTCPeerConnection.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698