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

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

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
« no previous file with comments | « Source/modules/mediastream/RTCDataChannel.h ('k') | Source/modules/mediastream/RTCDataChannel.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCDataChannel.cpp
diff --git a/Source/modules/mediastream/RTCDataChannel.cpp b/Source/modules/mediastream/RTCDataChannel.cpp
index 9f3c7b94df46da8d90853ace37609215dac9bdb0..d90f8e76a44b60f52566acf4e4449d83c50c19bb 100644
--- a/Source/modules/mediastream/RTCDataChannel.cpp
+++ b/Source/modules/mediastream/RTCDataChannel.cpp
@@ -80,6 +80,36 @@ bool RTCDataChannel::reliable() const
return m_handler->isReliable();
}
+bool RTCDataChannel::ordered() const
+{
+ return m_handler->ordered();
+}
+
+unsigned short RTCDataChannel::maxRetransmitTime() const
+{
+ return m_handler->maxRetransmitTime();
+}
+
+unsigned short RTCDataChannel::maxRetransmits() const
+{
+ return m_handler->maxRetransmits();
+}
+
+String RTCDataChannel::protocol() const
+{
+ return m_handler->protocol();
+}
+
+bool RTCDataChannel::negotiated() const
+{
+ return m_handler->negotiated();
+}
+
+unsigned short RTCDataChannel::id() const
+{
+ return m_handler->id();
+}
+
String RTCDataChannel::readyState() const
{
switch (m_readyState) {
« no previous file with comments | « Source/modules/mediastream/RTCDataChannel.h ('k') | Source/modules/mediastream/RTCDataChannel.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698