| Index: net/tools/quic/quic_spdy_server_stream_base.cc
 | 
| diff --git a/net/tools/quic/quic_spdy_server_stream_base.cc b/net/tools/quic/quic_spdy_server_stream_base.cc
 | 
| index e84516899b5be4a0272b602ed52471b93a14a8a4..4b68127775d04b55e47dd68be7fe23a9d8c3bc28 100644
 | 
| --- a/net/tools/quic/quic_spdy_server_stream_base.cc
 | 
| +++ b/net/tools/quic/quic_spdy_server_stream_base.cc
 | 
| @@ -5,7 +5,6 @@
 | 
|  #include "net/tools/quic/quic_spdy_server_stream_base.h"
 | 
|  
 | 
|  #include "net/quic/core/quic_error_codes.h"
 | 
| -#include "net/quic/platform/api/quic_logging.h"
 | 
|  
 | 
|  namespace net {
 | 
|  
 | 
| @@ -20,7 +19,7 @@
 | 
|      // or RST.
 | 
|      DCHECK(fin_sent());
 | 
|      // Tell the peer to stop sending further data.
 | 
| -    QUIC_DVLOG(0) << " Server: Send QUIC_STREAM_NO_ERROR on stream " << id();
 | 
| +    DVLOG(0) << " Server: Send QUIC_STREAM_NO_ERROR on stream " << id();
 | 
|      Reset(QUIC_STREAM_NO_ERROR);
 | 
|    }
 | 
|  
 | 
| 
 |