| Index: net/quic/core/quic_crypto_stream.cc
 | 
| diff --git a/net/quic/core/quic_crypto_stream.cc b/net/quic/core/quic_crypto_stream.cc
 | 
| index 814b2683a0ccd4b2d2745f8090bbebf44312c868..fc6a4ce2c279ac8db4b0a3e9f15b9d1b058518c5 100644
 | 
| --- a/net/quic/core/quic_crypto_stream.cc
 | 
| +++ b/net/quic/core/quic_crypto_stream.cc
 | 
| @@ -13,7 +13,6 @@
 | 
|  #include "net/quic/core/quic_flags.h"
 | 
|  #include "net/quic/core/quic_session.h"
 | 
|  #include "net/quic/core/quic_utils.h"
 | 
| -#include "net/quic/platform/api/quic_logging.h"
 | 
|  
 | 
|  using std::string;
 | 
|  using base::StringPiece;
 | 
| @@ -49,13 +48,13 @@
 | 
|  }
 | 
|  
 | 
|  void QuicCryptoStream::OnError(CryptoFramer* framer) {
 | 
| -  QUIC_DLOG(WARNING) << "Error processing crypto data: "
 | 
| -                     << QuicErrorCodeToString(framer->error());
 | 
| +  DLOG(WARNING) << "Error processing crypto data: "
 | 
| +                << QuicErrorCodeToString(framer->error());
 | 
|  }
 | 
|  
 | 
|  void QuicCryptoStream::OnHandshakeMessage(
 | 
|      const CryptoHandshakeMessage& message) {
 | 
| -  QUIC_DVLOG(1) << ENDPOINT << "Received " << message.DebugString();
 | 
| +  DVLOG(1) << ENDPOINT << "Received " << message.DebugString();
 | 
|    session()->OnCryptoHandshakeMessageReceived(message);
 | 
|  }
 | 
|  
 | 
| @@ -85,7 +84,7 @@
 | 
|  
 | 
|  void QuicCryptoStream::SendHandshakeMessage(
 | 
|      const CryptoHandshakeMessage& message) {
 | 
| -  QUIC_DVLOG(1) << ENDPOINT << "Sending " << message.DebugString();
 | 
| +  DVLOG(1) << ENDPOINT << "Sending " << message.DebugString();
 | 
|    session()->connection()->NeuterUnencryptedPackets();
 | 
|    session()->OnCryptoHandshakeMessageSent(message);
 | 
|    const QuicData& data = message.GetSerialized();
 | 
| @@ -97,8 +96,8 @@
 | 
|                                              size_t result_len,
 | 
|                                              string* result) const {
 | 
|    if (!handshake_confirmed()) {
 | 
| -    QUIC_DLOG(ERROR) << "ExportKeyingMaterial was called before forward-secure"
 | 
| -                     << "encryption was established.";
 | 
| +    DLOG(ERROR) << "ExportKeyingMaterial was called before forward-secure"
 | 
| +                << "encryption was established.";
 | 
|      return false;
 | 
|    }
 | 
|    return CryptoUtils::ExportKeyingMaterial(
 | 
| 
 |