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

Unified Diff: webrtc/audio/audio_send_stream.h

Issue 2987763003: Make ~webrtc::AudioSendStream public, and s/config()/GetConfig(), as well as make public. (Closed)
Patch Set: Discussed offline with Fredrick; implement. 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/audio/audio_send_stream.h
diff --git a/webrtc/audio/audio_send_stream.h b/webrtc/audio/audio_send_stream.h
index 42a04aee0932b3d06ea0508d1b40373934c02c73..8b48d44af79c31cfc3601de56b84eb0aeb13f1da 100644
--- a/webrtc/audio/audio_send_stream.h
+++ b/webrtc/audio/audio_send_stream.h
@@ -51,6 +51,7 @@ class AudioSendStream final : public webrtc::AudioSendStream,
// webrtc::AudioSendStream implementation.
void Reconfigure(const webrtc::AudioSendStream::Config& config) override;
+ const webrtc::AudioSendStream::Config& GetConfig() const override;
void Start() override;
void Stop() override;
@@ -73,7 +74,6 @@ class AudioSendStream final : public webrtc::AudioSendStream,
void OnPacketFeedbackVector(
const std::vector<PacketFeedback>& packet_feedback_vector) override;
- const webrtc::AudioSendStream::Config& config() const;
void SetTransportOverhead(int transport_overhead_per_packet);
RtpState GetRtpState() const;

Powered by Google App Engine
This is Rietveld 408576698