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

Unified Diff: talk/app/webrtc/peerconnectioninterface.h

Issue 1455033004: Ping backup connection at a slower rate (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 1 month 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
Index: talk/app/webrtc/peerconnectioninterface.h
diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h
index b7814e583033ac4f741c8d1b245ed14e5c12c143..c42bc590478a55f34f9bcabdb93e94428cf232ec 100644
--- a/talk/app/webrtc/peerconnectioninterface.h
+++ b/talk/app/webrtc/peerconnectioninterface.h
@@ -254,6 +254,7 @@ class PeerConnectionInterface : public rtc::RefCountInterface {
int audio_jitter_buffer_max_packets;
bool audio_jitter_buffer_fast_accelerate;
int ice_connection_receiving_timeout;
+ int ice_backup_connection_ping_interval;
pthatcher1 2015/11/20 05:34:37 We need to specify the unit of measure. For examp
honghaiz3 2015/11/20 20:10:06 I added comments because the variable name is alre
ContinualGatheringPolicy continual_gathering_policy;
std::vector<rtc::scoped_refptr<rtc::RTCCertificate>> certificates;
@@ -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_connection_ping_interval(kUndefined),
continual_gathering_policy(GATHER_ONCE) {}
};

Powered by Google App Engine
This is Rietveld 408576698