Index: talk/app/webrtc/peerconnectioninterface.h |
diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h |
index 8e72547a44a8adba1d9fab52796cc13294f83701..100d8cea07b1397f115dae47f0944b1f23ba8377 100644 |
--- a/talk/app/webrtc/peerconnectioninterface.h |
+++ b/talk/app/webrtc/peerconnectioninterface.h |
@@ -253,7 +253,8 @@ class PeerConnectionInterface : public rtc::RefCountInterface { |
TcpCandidatePolicy tcp_candidate_policy; |
int audio_jitter_buffer_max_packets; |
bool audio_jitter_buffer_fast_accelerate; |
- int ice_connection_receiving_timeout; |
+ int ice_connection_receiving_timeout; // ms |
+ int ice_backup_candidate_pair_ping_interval; // ms |
ContinualGatheringPolicy continual_gathering_policy; |
std::vector<rtc::scoped_refptr<rtc::RTCCertificate>> certificates; |
bool disable_prerenderer_smoothing; |
@@ -265,6 +266,7 @@ class PeerConnectionInterface : public rtc::RefCountInterface { |
audio_jitter_buffer_max_packets(kAudioJitterBufferMaxPackets), |
audio_jitter_buffer_fast_accelerate(false), |
ice_connection_receiving_timeout(kUndefined), |
+ ice_backup_candidate_pair_ping_interval(kUndefined), |
continual_gathering_policy(GATHER_ONCE), |
disable_prerenderer_smoothing(false) {} |
}; |