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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h

Issue 2951713002: RTCPeerConnection.addTrack and removeTrack added (behind flag) (Closed)
Patch Set: Addressed deadbeef's comments Created 3 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
Index: third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
index d9fba38a7fe1dc5a63ee0d91b872a7675b574308..cc5be6f856c4949a79a1e3363ec02b6a5e7c9e92 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
@@ -156,6 +156,8 @@ class MODULES_EXPORT RTCPeerConnection final
HeapVector<Member<RTCRtpSender>> getSenders();
HeapVector<Member<RTCRtpReceiver>> getReceivers();
+ RTCRtpSender* addTrack(MediaStreamTrack*, MediaStreamVector, ExceptionState&);
+ void removeTrack(RTCRtpSender*, ExceptionState&);
RTCDataChannel* createDataChannel(ScriptState*,
String label,

Powered by Google App Engine
This is Rietveld 408576698