Chromium Code Reviews

Unified Diff: webrtc/media/base/fakemediaengine.h

Issue 2854123003: Build WebRTC with data channel only. (Closed)
Patch Set: Try the internal trybots. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/media/base/fakemediaengine.h
diff --git a/webrtc/media/base/fakemediaengine.h b/webrtc/media/base/fakemediaengine.h
index 4984d1b88c3168dbcaff6ef43501ab5b07292b58..1f758467c3217a1fc8ee5a9ae94a021bbd82f1e2 100644
--- a/webrtc/media/base/fakemediaengine.h
+++ b/webrtc/media/base/fakemediaengine.h
@@ -424,6 +424,10 @@ class FakeVoiceMediaChannel : public RtpHelper<VoiceMediaChannel> {
sink_ = std::move(sink);
}
+ virtual std::vector<webrtc::RtpSource> GetSources(uint32_t ssrc) const {
+ return std::vector<webrtc::RtpSource>();
+ }
+
private:
class VoiceChannelAudioSink : public AudioSource::Sink {
public:

Powered by Google App Engine