Commit eda04171 authored by Renjie Tang's avatar Renjie Tang Committed by Commit Bot

Roll src/net/third_party/quiche/src/ b5f2d72f5..a89eee387 (4 commits)

https://quiche.googlesource.com/quiche.git/+log/b5f2d72f536f..a89eee387569

$ git log b5f2d72f5..a89eee387 --date=short --no-merges --format='%ad %ae %s'
2019-11-22 wub gfe-relnote: (n/a) In quic::test::TestQuicSpdyServerSession, do not call Initialize() in constructor. Test only, not protected.
2019-11-21 bnc Move NoopQpackStreamSenderDelegate to qpack_test_utils.h.
2019-11-21 renjietang Change window_update frame's byte_offset to max_data to incorporate IETF spec.
2019-11-21 wub gfe-relnote: (n/a) Only enable QUIC MTU discovery in the server->client direction. No behavior change in GFE, not protected.

Created with:
  roll-dep src/net/third_party/quiche/src src/third_party/quic_trace/src

Change-Id: Ib3df7f9ef286727cb0f33938db2bd49ac785ebc0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1931496
Commit-Queue: Renjie Tang <renjietang@chromium.org>
Reviewed-by: default avatarRyan Hamilton <rch@chromium.org>
Cr-Commit-Position: refs/heads/master@{#718363}
parent 3db12e00
......@@ -307,7 +307,7 @@ vars = {
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'quiche_revision': 'b5f2d72f536ff972767a674df92a579fae3d8dcd',
'quiche_revision': 'a89eee38756967553cd5b406ba7a1a14e8df9de5',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling ios_webkit
# and whatever else without interference from each other.
......
......@@ -1421,7 +1421,6 @@ component("net") {
"third_party/quiche/src/quic/core/qpack/qpack_static_table.h",
"third_party/quiche/src/quic/core/qpack/qpack_stream_receiver.h",
"third_party/quiche/src/quic/core/qpack/qpack_stream_sender_delegate.h",
"third_party/quiche/src/quic/core/qpack/qpack_utils.h",
"third_party/quiche/src/quic/core/qpack/value_splitting_header_list.cc",
"third_party/quiche/src/quic/core/qpack/value_splitting_header_list.h",
"third_party/quiche/src/quic/core/quic_ack_listener_interface.cc",
......
......@@ -165,7 +165,7 @@ base::Value NetLogQuicWindowUpdateFrameParams(
const quic::QuicWindowUpdateFrame* frame) {
base::Value dict(base::Value::Type::DICTIONARY);
dict.SetIntKey("stream_id", frame->stream_id);
dict.SetKey("byte_offset", NetLogNumberValue(frame->byte_offset));
dict.SetKey("byte_offset", NetLogNumberValue(frame->max_data));
return dict;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment