Index: net/quic/quic_protocol.cc |
diff --git a/net/quic/quic_protocol.cc b/net/quic/quic_protocol.cc |
index c5b76011277448345dbad966b8ba06414d3c3f47..7cfa8b97443e2d2de9061d2193ce8f722061a800 100644 |
--- a/net/quic/quic_protocol.cc |
+++ b/net/quic/quic_protocol.cc |
@@ -733,11 +733,13 @@ AckListenerWrapper::~AckListenerWrapper() {} |
SerializedPacket::SerializedPacket(QuicPathId path_id, |
QuicPacketNumber packet_number, |
QuicPacketNumberLength packet_number_length, |
- QuicEncryptedPacket* packet, |
+ const char* encrypted_buffer, |
+ QuicPacketLength encrypted_length, |
QuicPacketEntropyHash entropy_hash, |
bool has_ack, |
bool has_stop_waiting) |
- : packet(packet), |
+ : encrypted_buffer(encrypted_buffer), |
+ encrypted_length(encrypted_length), |
has_crypto_handshake(NOT_HANDSHAKE), |
needs_padding(false), |
path_id(path_id), |