| Index: talk/app/webrtc/peerconnection.cc
|
| diff --git a/talk/app/webrtc/peerconnection.cc b/talk/app/webrtc/peerconnection.cc
|
| index ef5836bbdd4a7dac84d33ae484bd8f3c43544486..c147aef5651f8f994b0b2c2726db497228a0f650 100644
|
| --- a/talk/app/webrtc/peerconnection.cc
|
| +++ b/talk/app/webrtc/peerconnection.cc
|
| @@ -649,10 +649,6 @@ void PeerConnection::PostSetSessionDescriptionFailure(
|
| signaling_thread()->Post(this, MSG_SET_SESSIONDESCRIPTION_FAILED, msg);
|
| }
|
|
|
| -void PeerConnection::SetIceConnectionReceivingTimeout(int timeout_ms) {
|
| - session_->SetIceConnectionReceivingTimeout(timeout_ms);
|
| -}
|
| -
|
| bool PeerConnection::UpdateIce(const IceServers& configuration,
|
| const MediaConstraintsInterface* constraints) {
|
| return false;
|
| @@ -696,6 +692,8 @@ bool PeerConnection::UpdateIce(const RTCConfiguration& config) {
|
| }
|
| }
|
| }
|
| + session_->SetIceConnectionReceivingTimeout(
|
| + config.ice_connection_receiving_timeout);
|
| return session_->SetIceTransports(config.type);
|
| }
|
|
|
|
|