diff --git a/net/log/net_log_event_type_list.h b/net/log/net_log_event_type_list.h index 92848070bf1516..fc25a3d2f3ac9a 100644 --- a/net/log/net_log_event_type_list.h +++ b/net/log/net_log_event_type_list.h @@ -1943,11 +1943,11 @@ EVENT_TYPE(QUIC_SESSION_STOP_WAITING_FRAME_RECEIVED) // } EVENT_TYPE(QUIC_SESSION_STOP_WAITING_FRAME_SENT) -// Session recevied a RST_STREAM frame. +// Session received a RST_STREAM frame. // { // "offset": , // "quic_rst_stream_error": , -// "details": , +// "stream_id": , // } EVENT_TYPE(QUIC_SESSION_RST_STREAM_FRAME_RECEIVED) @@ -1955,7 +1955,7 @@ EVENT_TYPE(QUIC_SESSION_RST_STREAM_FRAME_RECEIVED) // { // "offset": , // "quic_rst_stream_error": , -// "details": , +// "stream_id": , // } EVENT_TYPE(QUIC_SESSION_RST_STREAM_FRAME_SENT) @@ -2109,14 +2109,14 @@ EVENT_TYPE(QUIC_SESSION_CRYPTO_FRAME_RECEIVED) // Session sent a STOP_SENDING frame. // { // "stream_id": , -// "application_error_code": +// "rsr_stream_error_code": // } EVENT_TYPE(QUIC_SESSION_STOP_SENDING_FRAME_SENT) // Session received a STOP_SENDING frame. // { // "stream_id": , -// "application_error_code": +// "rsr_stream_error_code": // } EVENT_TYPE(QUIC_SESSION_STOP_SENDING_FRAME_RECEIVED) diff --git a/net/quic/quic_event_logger.cc b/net/quic/quic_event_logger.cc index 7f0154b1681bb3..05e80d60f2c3a0 100644 --- a/net/quic/quic_event_logger.cc +++ b/net/quic/quic_event_logger.cc @@ -377,7 +377,7 @@ base::Value NetLogQuicStopSendingFrameParams( const quic::QuicStopSendingFrame* frame) { base::Value dict(base::Value::Type::DICTIONARY); dict.SetIntKey("stream_id", frame->stream_id); - dict.SetIntKey("error_code", frame->error_code); + dict.SetIntKey("quic_rst_stream_error", frame->error_code); return dict; }