| Index: webrtc/p2p/base/port.cc
 | 
| diff --git a/webrtc/p2p/base/port.cc b/webrtc/p2p/base/port.cc
 | 
| index 565ddb67a60e24fe28f3eb838c88d517a5641512..3b78af4dd3f481fba80eb0a825e8d5c986ad30ca 100644
 | 
| --- a/webrtc/p2p/base/port.cc
 | 
| +++ b/webrtc/p2p/base/port.cc
 | 
| @@ -60,11 +60,11 @@ inline bool TooLongWithoutResponse(
 | 
|  // We will restrict RTT estimates (when used for determining state) to be
 | 
|  // within a reasonable range.
 | 
|  const int MINIMUM_RTT = 100;   // 0.1 seconds
 | 
| -const int MAXIMUM_RTT = 3000;  // 3 seconds
 | 
| +const int MAXIMUM_RTT = 60000;  // 60 seconds
 | 
|  
 | 
|  // When we don't have any RTT data, we have to pick something reasonable.  We
 | 
|  // use a large value just in case the connection is really slow.
 | 
| -const int DEFAULT_RTT = MAXIMUM_RTT;
 | 
| +const int DEFAULT_RTT = 3000;  // 3 seconds
 | 
|  
 | 
|  // Computes our estimate of the RTT given the current estimate.
 | 
|  inline int ConservativeRTTEstimate(int rtt) {
 | 
| 
 |