| Index: webrtc/p2p/base/turnport_unittest.cc | 
| diff --git a/webrtc/p2p/base/turnport_unittest.cc b/webrtc/p2p/base/turnport_unittest.cc | 
| index 9455d176bee9842f3a8f342784f9974f0d9f7ee3..2c93ead9dfacb701c042ab7cc85d594fa991de72 100644 | 
| --- a/webrtc/p2p/base/turnport_unittest.cc | 
| +++ b/webrtc/p2p/base/turnport_unittest.cc | 
| @@ -629,7 +629,7 @@ TEST_F(TurnPortTest, TestTurnAllocateNonceResetAfterAllocateMismatch) { | 
| // using timestamp |ts_before| but then get an allocate mismatch error and | 
| // receive an even newer nonce based on the system clock. |ts_before| is | 
| // chosen so that the two NONCEs generated by the server will be different. | 
| -  uint32_t ts_before = rtc::Time() - 1; | 
| +  int64_t ts_before = rtc::Time64() - 1; | 
| std::string first_nonce = | 
| turn_server_.server()->SetTimestampForNextNonce(ts_before); | 
| turn_port_->PrepareAddress(); | 
|  |