Index: webrtc/audio/audio_receive_stream.h |
diff --git a/webrtc/audio/audio_receive_stream.h b/webrtc/audio/audio_receive_stream.h |
index e7a2952a2a27db63e12555ff3e5c89294fc41f22..08e65cd0843507dd6575b923408ded6214066e24 100644 |
--- a/webrtc/audio/audio_receive_stream.h |
+++ b/webrtc/audio/audio_receive_stream.h |
@@ -17,11 +17,13 @@ |
#include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
namespace webrtc { |
- |
class RemoteBitrateEstimator; |
-namespace internal { |
+namespace voe { |
+class ChannelProxy; |
+} // namespace voe |
+namespace internal { |
class AudioReceiveStream final : public webrtc::AudioReceiveStream { |
public: |
AudioReceiveStream(RemoteBitrateEstimator* remote_bitrate_estimator, |
@@ -51,6 +53,7 @@ class AudioReceiveStream final : public webrtc::AudioReceiveStream { |
const webrtc::AudioReceiveStream::Config config_; |
rtc::scoped_refptr<webrtc::AudioState> audio_state_; |
rtc::scoped_ptr<RtpHeaderParser> rtp_header_parser_; |
+ rtc::scoped_ptr<voe::ChannelProxy> channel_proxy_; |
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioReceiveStream); |
}; |