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

Unified Diff: public/platform/WebRTCDataChannelHandlerClient.h

Issue 1171553002: Initial implementation of onbufferedamountlow (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove reference to file that no longer exists Created 5 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/modules.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebRTCDataChannelHandlerClient.h
diff --git a/public/platform/WebRTCDataChannelHandlerClient.h b/public/platform/WebRTCDataChannelHandlerClient.h
index 3d5fbcf3e6fe2735ec9fc5c0e99a6eb55653b020..78891b22b90d976f36d31c01efce0bcb88926289 100644
--- a/public/platform/WebRTCDataChannelHandlerClient.h
+++ b/public/platform/WebRTCDataChannelHandlerClient.h
@@ -31,7 +31,7 @@
namespace blink {
-class WebRTCDataChannelHandlerClient {
+class BLINK_EXPORT WebRTCDataChannelHandlerClient {
public:
enum ReadyState {
ReadyStateConnecting = 0,
@@ -43,6 +43,8 @@ public:
virtual ~WebRTCDataChannelHandlerClient() { }
virtual void didChangeReadyState(ReadyState) = 0;
+ // TODO(bemasc): Make this pure virtual once Chromium unit tests are updated
+ virtual void didDecreaseBufferedAmount(unsigned) { };
virtual void didReceiveStringData(const WebString&) = 0;
virtual void didReceiveRawData(const char*, size_t) = 0;
virtual void didDetectError() = 0;
« no previous file with comments | « Source/modules/modules.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698