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

Unified Diff: Source/core/platform/mediastream/RTCDataChannelHandler.h

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 | « no previous file | Source/core/platform/mediastream/RTCDataChannelHandler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/mediastream/RTCDataChannelHandler.h
diff --git a/Source/core/platform/mediastream/RTCDataChannelHandler.h b/Source/core/platform/mediastream/RTCDataChannelHandler.h
index 18a4055e638bd5b72b4a97348cb24558a5549cfb..70a3076f860c3bfd66635182568bf555922276c9 100644
--- a/Source/core/platform/mediastream/RTCDataChannelHandler.h
+++ b/Source/core/platform/mediastream/RTCDataChannelHandler.h
@@ -43,8 +43,18 @@ public:
void setClient(RTCDataChannelHandlerClient*);
- String label();
- bool isReliable();
+ String label() const;
+
+ // DEPRECATED
+ bool isReliable() const;
+
+ bool ordered() const;
+ unsigned short maxRetransmitTime() const;
+ unsigned short maxRetransmits() const;
+ String protocol() const;
+ bool negotiated() const;
+ unsigned short id() const;
+
unsigned long bufferedAmount();
bool sendStringData(const String&);
bool sendRawData(const char*, size_t);
« no previous file with comments | « no previous file | Source/core/platform/mediastream/RTCDataChannelHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698