| Index: net/quic/quic_connection_logger.cc
|
| diff --git a/net/quic/quic_connection_logger.cc b/net/quic/quic_connection_logger.cc
|
| index 525edd5afc2ea38594eeced0b58d68d3fb04c962..174d99a58c631ea2f6aa37001d376538112c6570 100644
|
| --- a/net/quic/quic_connection_logger.cc
|
| +++ b/net/quic/quic_connection_logger.cc
|
| @@ -80,7 +80,7 @@ base::Value* NetLogQuicStreamFrameCallback(const QuicStreamFrame* frame,
|
| dict->SetInteger("stream_id", frame->stream_id);
|
| dict->SetBoolean("fin", frame->fin);
|
| dict->SetString("offset", base::Uint64ToString(frame->offset));
|
| - dict->SetInteger("length", frame->data.Size());
|
| + dict->SetInteger("length", frame->data.TotalBufferSize());
|
| return dict;
|
| }
|
|
|
|
|