summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/mediastream/RTCPeerConnectionHandlerClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/mediastream/RTCPeerConnectionHandlerClient.h')
-rw-r--r--Source/WebCore/platform/mediastream/RTCPeerConnectionHandlerClient.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/WebCore/platform/mediastream/RTCPeerConnectionHandlerClient.h b/Source/WebCore/platform/mediastream/RTCPeerConnectionHandlerClient.h
index 33b904260..389c8671b 100644
--- a/Source/WebCore/platform/mediastream/RTCPeerConnectionHandlerClient.h
+++ b/Source/WebCore/platform/mediastream/RTCPeerConnectionHandlerClient.h
@@ -38,6 +38,7 @@
namespace WebCore {
class MediaStreamDescriptor;
+class RTCDataChannelDescriptor;
class RTCIceCandidateDescriptor;
class RTCPeerConnectionHandlerClient {
@@ -69,6 +70,9 @@ public:
virtual void didChangeIceState(IceState) = 0;
virtual void didAddRemoteStream(PassRefPtr<MediaStreamDescriptor>) = 0;
virtual void didRemoveRemoteStream(MediaStreamDescriptor*) = 0;
+
+ // RTCDataChannel.
+ virtual void didAddRemoteDataChannel(PassRefPtr<RTCDataChannelDescriptor>) = 0;
};
} // namespace WebCore