| Index: net/quic/quic_time_wait_list_manager.cc
 | 
| diff --git a/net/quic/quic_time_wait_list_manager.cc b/net/quic/quic_time_wait_list_manager.cc
 | 
| index 52ee2da0534acf54b2cf8ff27b2992f7c7641406..2e3e16d5a58b0ba72e2d3392e7a6c2621fc53754 100644
 | 
| --- a/net/quic/quic_time_wait_list_manager.cc
 | 
| +++ b/net/quic/quic_time_wait_list_manager.cc
 | 
| @@ -22,7 +22,6 @@
 | 
|  #include "net/quic/quic_utils.h"
 | 
|  
 | 
|  using base::StringPiece;
 | 
| -using std::make_pair;
 | 
|  
 | 
|  namespace net {
 | 
|  
 | 
| @@ -122,7 +121,7 @@ void QuicTimeWaitListManager::AddConnectionIdToTimeWait(
 | 
|                          version,
 | 
|                          helper_->GetClock()->ApproximateNow(),
 | 
|                          close_packet);
 | 
| -  connection_id_map_.insert(make_pair(connection_id, data));
 | 
| +  connection_id_map_.insert(std::make_pair(connection_id, data));
 | 
|    if (new_connection_id) {
 | 
|      visitor_->OnConnectionAddedToTimeWaitList(connection_id);
 | 
|    }
 | 
| 
 |