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

Unified Diff: talk/app/webrtc/test/fakemediastreamsignaling.h

Issue 1351803002: Exposing RtpSenders and RtpReceivers from PeerConnection. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 3 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/test/fakemediastreamsignaling.h
diff --git a/talk/app/webrtc/test/fakemediastreamsignaling.h b/talk/app/webrtc/test/fakemediastreamsignaling.h
index 7e13d4483b6659fa488d4409f7a1d827a9f73beb..58978fa72ad58d3927e115446d983fae76603132 100644
--- a/talk/app/webrtc/test/fakemediastreamsignaling.h
+++ b/talk/app/webrtc/test/fakemediastreamsignaling.h
@@ -93,21 +93,21 @@ class FakeMediaStreamSignaling : public webrtc::MediaStreamSignaling,
}
virtual void OnAddLocalAudioTrack(webrtc::MediaStreamInterface* stream,
webrtc::AudioTrackInterface* audio_track,
- uint32 ssrc) {
- }
+ uint32 ssrc,
+ const std::string& mid) {}
virtual void OnAddLocalVideoTrack(webrtc::MediaStreamInterface* stream,
webrtc::VideoTrackInterface* video_track,
- uint32 ssrc) {
- }
+ uint32 ssrc,
+ const std::string& mid) {}
virtual void OnAddRemoteAudioTrack(webrtc::MediaStreamInterface* stream,
webrtc::AudioTrackInterface* audio_track,
- uint32 ssrc) {
- }
+ uint32 ssrc,
+ const std::string& mid) {}
virtual void OnAddRemoteVideoTrack(webrtc::MediaStreamInterface* stream,
webrtc::VideoTrackInterface* video_track,
- uint32 ssrc) {
- }
+ uint32 ssrc,
+ const std::string& mid) {}
virtual void OnRemoveRemoteAudioTrack(
webrtc::MediaStreamInterface* stream,

Powered by Google App Engine
This is Rietveld 408576698