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

Unified Diff: talk/app/webrtc/objc/public/RTCDataChannel.h

Issue 1207613006: Support for onbufferedamountlow (Closed) Base URL: https://chromium.googlesource.com/external/webrtc/trunk/talk.git@master
Patch Set: Add Objective C bindings Created 5 years, 6 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: talk/app/webrtc/objc/public/RTCDataChannel.h
diff --git a/talk/app/webrtc/objc/public/RTCDataChannel.h b/talk/app/webrtc/objc/public/RTCDataChannel.h
index 7c225802455a2b841618063cfbf8086ab5f1eab5..0b0ea4049705f92010d783bc4704b5c22d00d0f7 100644
--- a/talk/app/webrtc/objc/public/RTCDataChannel.h
+++ b/talk/app/webrtc/objc/public/RTCDataChannel.h
@@ -78,6 +78,10 @@ typedef enum {
// Called when the data channel state has changed.
- (void)channelDidChangeState:(RTCDataChannel*)channel;
+// Called when the data channel state has changed.
+- (void)channelDidChangeBufferedAmount:(RTCDataChannel*)channel
tkchin_webrtc 2015/06/29 22:18:30 Update comment? Style: - (void)channel:(RTCDataCha
bemasc2 2015/06/29 22:53:17 Done.
+ previousAmount:(NSUInteger)amount;
+
// Called when a data buffer was successfully received.
- (void)channel:(RTCDataChannel*)channel
didReceiveMessageWithBuffer:(RTCDataBuffer*)buffer;

Powered by Google App Engine
This is Rietveld 408576698