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

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

Issue 1563403002: Adding AddTrack/RemoveTrack to native PeerConnection API. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Adding default implementation for new methods. Created 4 years, 11 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 | « talk/app/webrtc/peerconnectionproxy.h ('k') | talk/app/webrtc/rtpsender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/app/webrtc/rtpsender.h
diff --git a/talk/app/webrtc/rtpsender.h b/talk/app/webrtc/rtpsender.h
index d5f88a941add3df7e8a2bcdc3efe0a0ab62eb073..766aa4c0f18605287c9ece33e06119302bf68467 100644
--- a/talk/app/webrtc/rtpsender.h
+++ b/talk/app/webrtc/rtpsender.h
@@ -78,6 +78,11 @@ class AudioRtpSender : public ObserverInterface,
AudioProviderInterface* provider,
StatsCollector* stats);
+ // Randomly generates stream_id.
+ AudioRtpSender(AudioTrackInterface* track,
+ AudioProviderInterface* provider,
+ StatsCollector* stats);
+
// Randomly generates id and stream_id.
AudioRtpSender(AudioProviderInterface* provider, StatsCollector* stats);
@@ -136,6 +141,9 @@ class VideoRtpSender : public ObserverInterface,
const std::string& stream_id,
VideoProviderInterface* provider);
+ // Randomly generates stream_id.
+ VideoRtpSender(VideoTrackInterface* track, VideoProviderInterface* provider);
+
// Randomly generates id and stream_id.
explicit VideoRtpSender(VideoProviderInterface* provider);
« no previous file with comments | « talk/app/webrtc/peerconnectionproxy.h ('k') | talk/app/webrtc/rtpsender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698