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

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

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
Index: webrtc/media/engine/fakewebrtccall.h
diff --git a/webrtc/media/engine/fakewebrtccall.h b/webrtc/media/engine/fakewebrtccall.h
index 15f2108cca230777460486fecf2a632993b7fce2..7f3a3ae0c3a93c0bbd90cb1806f36d603e1d8a28 100644
--- a/webrtc/media/engine/fakewebrtccall.h
+++ b/webrtc/media/engine/fakewebrtccall.h
@@ -47,7 +47,9 @@ class FakeAudioSendStream final : public webrtc::AudioSendStream {
int id, const webrtc::AudioSendStream::Config& config);
int id() const { return id_; }
- const webrtc::AudioSendStream::Config& GetConfig() const;
+ const webrtc::AudioSendStream::Config& GetConfig() const override;
+ webrtc::RtpState GetRtpState() const override;
+ const webrtc::TimeInterval& GetActiveLifetime() const override;
void SetStats(const webrtc::AudioSendStream::Stats& stats);
TelephoneEvent GetLatestTelephoneEvent() const;
bool IsSending() const { return sending_; }

Powered by Google App Engine
This is Rietveld 408576698