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

Unified Diff: talk/app/webrtc/datachannelinterface.h

Issue 1207613006: Support for onbufferedamountlow (Closed) Base URL: https://chromium.googlesource.com/external/webrtc/trunk/talk.git@master
Patch Set: Fix path problems 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/datachannelinterface.h
diff --git a/talk/app/webrtc/datachannelinterface.h b/talk/app/webrtc/datachannelinterface.h
index 63122629f565f2186ba5468aca0518e64ca5f478..6c3a7bdf793276a379c8ac96dcff7890faeaa971 100644
--- a/talk/app/webrtc/datachannelinterface.h
+++ b/talk/app/webrtc/datachannelinterface.h
@@ -89,6 +89,8 @@ class DataChannelObserver {
public:
// The data channel state have changed.
virtual void OnStateChange() = 0;
+ // The data channel's buffered_amount has changed.
+ virtual void OnBufferedAmountChange(uint64 previous_amount) = 0;
// A data buffer was successfully received.
virtual void OnMessage(const DataBuffer& buffer) = 0;

Powered by Google App Engine
This is Rietveld 408576698