| Index: net/quic/core/congestion_control/cubic.cc
 | 
| diff --git a/net/quic/core/congestion_control/cubic.cc b/net/quic/core/congestion_control/cubic.cc
 | 
| index d3e04aa53e44013f5612c53d4b6adc4e69f55a6e..c19caf3f42a00cfb2df64ad8060af44062e3acf0 100644
 | 
| --- a/net/quic/core/congestion_control/cubic.cc
 | 
| +++ b/net/quic/core/congestion_control/cubic.cc
 | 
| @@ -8,9 +8,9 @@
 | 
|  #include <cmath>
 | 
|  #include <cstdint>
 | 
|  
 | 
| +#include "base/logging.h"
 | 
|  #include "net/quic/core/quic_flags.h"
 | 
|  #include "net/quic/core/quic_packets.h"
 | 
| -#include "net/quic/platform/api/quic_logging.h"
 | 
|  
 | 
|  namespace net {
 | 
|  
 | 
| @@ -213,8 +213,7 @@
 | 
|      target_congestion_window = estimated_tcp_congestion_window_;
 | 
|    }
 | 
|  
 | 
| -  QUIC_DVLOG(1) << "Final target congestion_window: "
 | 
| -                << target_congestion_window;
 | 
| +  DVLOG(1) << "Final target congestion_window: " << target_congestion_window;
 | 
|    return target_congestion_window;
 | 
|  }
 | 
|  
 | 
| 
 |