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

Unified Diff: webrtc/audio/audio_send_stream.h

Issue 2685673003: Define RtpTransportControllerSendInterface. (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | webrtc/audio/audio_send_stream.cc » ('j') | webrtc/call/call.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/audio_send_stream.h
diff --git a/webrtc/audio/audio_send_stream.h b/webrtc/audio/audio_send_stream.h
index 05ed3aaeb8cfb7697e0ea8d54a934ea5fb2d2b45..956f058539ee3035309076e14ab20fd4545a2afa 100644
--- a/webrtc/audio/audio_send_stream.h
+++ b/webrtc/audio/audio_send_stream.h
@@ -20,11 +20,10 @@
#include "webrtc/call/bitrate_allocator.h"
namespace webrtc {
-class CongestionController;
class VoiceEngine;
class RtcEventLog;
class RtcpRttStats;
-class PacketRouter;
+class RtpTransportControllerSenderInterface;
namespace voe {
class ChannelProxy;
@@ -37,8 +36,7 @@ class AudioSendStream final : public webrtc::AudioSendStream,
AudioSendStream(const webrtc::AudioSendStream::Config& config,
const rtc::scoped_refptr<webrtc::AudioState>& audio_state,
rtc::TaskQueue* worker_queue,
- PacketRouter* packet_router,
- CongestionController* congestion_controller,
+ RtpTransportControllerSenderInterface* transport,
BitrateAllocator* bitrate_allocator,
RtcEventLog* event_log,
RtcpRttStats* rtcp_rtt_stats);
@@ -76,7 +74,7 @@ class AudioSendStream final : public webrtc::AudioSendStream,
std::unique_ptr<voe::ChannelProxy> channel_proxy_;
BitrateAllocator* const bitrate_allocator_;
- CongestionController* const congestion_controller_;
+ RtpTransportControllerSenderInterface* const transport_;
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioSendStream);
};
« no previous file with comments | « no previous file | webrtc/audio/audio_send_stream.cc » ('j') | webrtc/call/call.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698