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

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

Issue 2854123003: Build WebRTC with data channel only. (Closed)
Patch Set: Fix the issues. Make it ready for another round of review. Add a test. Created 3 years, 7 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: webrtc/media/base/fakemediaengine.h
diff --git a/webrtc/media/base/fakemediaengine.h b/webrtc/media/base/fakemediaengine.h
index c0aacfce5c19e6535c169096d859d3837062b3ee..f2dc290e54e1759815b71f235240466fbddca061 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
This is Rietveld 408576698