Index: webrtc/pc/channel.h |
diff --git a/webrtc/pc/channel.h b/webrtc/pc/channel.h |
index 45918ffca05d43a050a16ea13bbe474af03ad04a..36a525ba61429ce776af162fbfec6574b54437ce 100644 |
--- a/webrtc/pc/channel.h |
+++ b/webrtc/pc/channel.h |
@@ -366,6 +366,7 @@ class BaseChannel |
void SignalSentPacket_w(const rtc::SentPacket& sent_packet); |
bool IsReadyToSendMedia_n() const; |
void CacheRtpAbsSendTimeHeaderExtension_n(int rtp_abs_sendtime_extn_id); |
+ int GetTransportOverheadPerPacket(); |
minyue-webrtc
2016/11/03 14:01:53
const ?
michaelt
2016/11/03 14:33:23
Done.
|
rtc::Thread* const worker_thread_; |
rtc::Thread* const network_thread_; |
@@ -410,6 +411,7 @@ class BaseChannel |
std::vector<StreamParams> remote_streams_; |
MediaContentDirection local_content_direction_ = MD_INACTIVE; |
MediaContentDirection remote_content_direction_ = MD_INACTIVE; |
+ CandidatePairInterface* selected_candidate_pair_; |
}; |
// VoiceChannel is a specialization that adds support for early media, DTMF, |