Index: talk/media/webrtc/webrtcvoiceengine.h |
diff --git a/talk/media/webrtc/webrtcvoiceengine.h b/talk/media/webrtc/webrtcvoiceengine.h |
index 33524dbf53a9cdc7bcf71913204894e29ed84608..4f9e6e16a91c7b1eaa0fec1f6fc15a8481109bad 100644 |
--- a/talk/media/webrtc/webrtcvoiceengine.h |
+++ b/talk/media/webrtc/webrtcvoiceengine.h |
@@ -245,8 +245,6 @@ class WebRtcVoiceMediaChannel final : public VoiceMediaChannel, |
private: |
bool SetSendCodecs(const std::vector<AudioCodec>& codecs); |
- bool SetSendRtpHeaderExtensions( |
- const std::vector<RtpHeaderExtension>& extensions); |
bool SetOptions(const AudioOptions& options); |
bool SetMaxSendBandwidth(int bps); |
bool SetRecvCodecs(const std::vector<AudioCodec>& codecs); |
@@ -290,9 +288,6 @@ class WebRtcVoiceMediaChannel final : public VoiceMediaChannel, |
bool SetChannelRecvRtpHeaderExtensions( |
int channel_id, |
const std::vector<RtpHeaderExtension>& extensions); |
- bool SetChannelSendRtpHeaderExtensions( |
- int channel_id, |
- const std::vector<RtpHeaderExtension>& extensions); |
rtc::ThreadChecker worker_thread_checker_; |
@@ -321,7 +316,7 @@ class WebRtcVoiceMediaChannel final : public VoiceMediaChannel, |
class WebRtcAudioSendStream; |
std::map<uint32_t, WebRtcAudioSendStream*> send_streams_; |
- std::vector<RtpHeaderExtension> send_extensions_; |
+ std::vector<webrtc::RtpExtension> send_rtp_extensions_; |
class WebRtcAudioReceiveStream; |
std::map<uint32_t, WebRtcAudioReceiveStream*> receive_channels_; |