| Index: net/quic/quic_connection_logger.cc
|
| diff --git a/net/quic/quic_connection_logger.cc b/net/quic/quic_connection_logger.cc
|
| index df3d6ac97e3c0397f2f34e8fcbb41a06826542bf..952158872cf8358e7209f56fa6956d657fcd0c95 100644
|
| --- a/net/quic/quic_connection_logger.cc
|
| +++ b/net/quic/quic_connection_logger.cc
|
| @@ -114,7 +114,7 @@ base::Value* NetLogQuicRstStreamFrameCallback(
|
| NetLog::LogLevel /* log_level */) {
|
| base::DictionaryValue* dict = new base::DictionaryValue();
|
| dict->SetInteger("stream_id", frame->stream_id);
|
| - dict->SetInteger("error_code", frame->error_code);
|
| + dict->SetInteger("quic_rst_stream_error", frame->error_code);
|
| dict->SetString("details", frame->error_details);
|
| return dict;
|
| }
|
| @@ -123,7 +123,7 @@ base::Value* NetLogQuicConnectionCloseFrameCallback(
|
| const QuicConnectionCloseFrame* frame,
|
| NetLog::LogLevel /* log_level */) {
|
| base::DictionaryValue* dict = new base::DictionaryValue();
|
| - dict->SetInteger("error_code", frame->error_code);
|
| + dict->SetInteger("quic_error", frame->error_code);
|
| dict->SetString("details", frame->error_details);
|
| return dict;
|
| }
|
|
|