Index: net/quic/quic_crypto_stream.cc |
diff --git a/net/quic/quic_crypto_stream.cc b/net/quic/quic_crypto_stream.cc |
index 9005d5a39d3c396c7395f8f64be0fc8a34e1cad7..0e447127af5cc3b5746bfdf15c3d70a36f623470 100644 |
--- a/net/quic/quic_crypto_stream.cc |
+++ b/net/quic/quic_crypto_stream.cc |
@@ -57,12 +57,8 @@ void QuicCryptoStream::SendHandshakeMessage( |
const CryptoHandshakeMessage& message) { |
session()->OnCryptoHandshakeMessageSent(message); |
const QuicData& data = message.GetSerialized(); |
- // To make reasoning about crypto frames easier, we don't combine them with |
- // any other frames in a single packet. |
- session()->connection()->Flush(); |
// TODO(wtc): check the return value. |
WriteOrBufferData(string(data.data(), data.length()), false, NULL); |
- session()->connection()->Flush(); |
} |
const QuicCryptoNegotiatedParameters& |