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

Unified Diff: webrtc/media/engine/fakewebrtccall.cc

Issue 2987763003: Make ~webrtc::AudioSendStream public, and s/config()/GetConfig(), as well as make public. (Closed)
Patch Set: 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
« webrtc/call/call.cc ('K') | « webrtc/media/engine/fakewebrtccall.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/engine/fakewebrtccall.cc
diff --git a/webrtc/media/engine/fakewebrtccall.cc b/webrtc/media/engine/fakewebrtccall.cc
index 2e793b85253800211b4ca7414ccdeed43aa52df3..e865fe12b18be7ba2bb3dbe9e441e719715b28be 100644
--- a/webrtc/media/engine/fakewebrtccall.cc
+++ b/webrtc/media/engine/fakewebrtccall.cc
@@ -36,6 +36,15 @@ const webrtc::AudioSendStream::Config&
return config_;
}
+webrtc::RtpState FakeAudioSendStream::GetRtpState() const {
+ return webrtc::RtpState();
+}
+
+const webrtc::TimeInterval& FakeAudioSendStream::GetActiveLifetime() const {
+ static webrtc::TimeInterval fake_time_interval;
+ return fake_time_interval;
+}
+
void FakeAudioSendStream::SetStats(
const webrtc::AudioSendStream::Stats& stats) {
stats_ = stats;
« webrtc/call/call.cc ('K') | « webrtc/media/engine/fakewebrtccall.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698