| Index: talk/app/webrtc/peerconnectioninterface.h | 
| diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h | 
| index f0a79a638c53b1f6741c5f37c503456094b7570a..0b34621e402005aa351afcc40db0f740874a2c57 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_connection_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_connection_ping_interval(kUndefined), | 
| continual_gathering_policy(GATHER_ONCE), | 
| disable_prerenderer_smoothing(false) {} | 
| }; | 
|  |