Commit 09cd667b authored by Fan Yang's avatar Fan Yang Committed by Commit Bot

Roll src/net/third_party/quiche/src/ 7379c4932..2542cb728 (6 commits)

https://quiche.googlesource.com/quiche.git/+log/7379c493206b..2542cb728

$ git log 7379c4932..2542cb728 --date=short --no-merges --format='%ad %ae %s'
2020-03-26 fayang Change all QuicOneBlockArena<1024> to QuicOneBlockArena<1200> to fix link issue on Windows.
2020-03-26 bnc Do not allow push until MAX_PUSH_ID is received.
2020-03-26 fayang Split QUIC session type to two: SECURE_SPDY4_OVER_QUIC only for QUIC crypto, and QUIC_WITH_TLS1_3 for QUIC with TLS.
2020-03-26 fayang gfe-relnote: In QUIC, use IdleNetworkDetector to detect handshake and idle network timeout. Protected by gfe2_reloadable_flag_quic_use_idle_network_detector.
2020-03-25 renjietang Add CompleteHandshake() in QuicSpdySessionTest to save duplicated code.
2020-03-25 wub gfe-relnote: (n/a) Make Http2FrameDecoderNoOpListener compile with -Wunused-parameter. No behavior change.

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

R=bnc@chromium.org

Change-Id: Ifef6c3e66de4c2aa9da086aa487c2d7666325fad
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2121661
Commit-Queue: Fan Yang <fayang@chromium.org>
Reviewed-by: default avatarBence Béky <bnc@chromium.org>
Cr-Commit-Position: refs/heads/master@{#753760}
parent cfb85619
...@@ -306,7 +306,7 @@ vars = { ...@@ -306,7 +306,7 @@ vars = {
# Three lines of non-changing comments so that # Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed # the commit queue can handle CLs rolling feed
# and whatever else without interference from each other. # and whatever else without interference from each other.
'quiche_revision': '7379c493206bd0fb646cbaaa86b03617bb2fbbd9', 'quiche_revision': '2542cb728f1119cfbabd91105cc5a3cc44e784a3',
# Three lines of non-changing comments so that # Three lines of non-changing comments so that
# the commit queue can handle CLs rolling ios_webkit # the commit queue can handle CLs rolling ios_webkit
# and whatever else without interference from each other. # and whatever else without interference from each other.
......
...@@ -396,3 +396,9 @@ QUIC_FLAG(bool, ...@@ -396,3 +396,9 @@ QUIC_FLAG(bool,
// If true, use blackhole detector in QuicConnection to detect path degrading // If true, use blackhole detector in QuicConnection to detect path degrading
// and network blackhole. // and network blackhole.
QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_use_blackhole_detector, false) QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_use_blackhole_detector, false)
// If true, use idle network detector to detect handshake timeout and idle
// network timeout.
QUIC_FLAG(bool,
FLAGS_quic_reloadable_flag_quic_use_idle_network_detector,
false)
...@@ -428,6 +428,8 @@ source_set("quiche") { ...@@ -428,6 +428,8 @@ source_set("quiche") {
"src/quic/core/quic_flow_controller.h", "src/quic/core/quic_flow_controller.h",
"src/quic/core/quic_framer.cc", "src/quic/core/quic_framer.cc",
"src/quic/core/quic_framer.h", "src/quic/core/quic_framer.h",
"src/quic/core/quic_idle_network_detector.cc",
"src/quic/core/quic_idle_network_detector.h",
"src/quic/core/quic_interval.h", "src/quic/core/quic_interval.h",
"src/quic/core/quic_interval_deque.h", "src/quic/core/quic_interval_deque.h",
"src/quic/core/quic_interval_set.h", "src/quic/core/quic_interval_set.h",
...@@ -1315,6 +1317,7 @@ source_set("quiche_tests") { ...@@ -1315,6 +1317,7 @@ source_set("quiche_tests") {
"src/quic/core/quic_error_codes_test.cc", "src/quic/core/quic_error_codes_test.cc",
"src/quic/core/quic_flow_controller_test.cc", "src/quic/core/quic_flow_controller_test.cc",
"src/quic/core/quic_framer_test.cc", "src/quic/core/quic_framer_test.cc",
"src/quic/core/quic_idle_network_detector_test.cc",
"src/quic/core/quic_interval_deque_test.cc", "src/quic/core/quic_interval_deque_test.cc",
"src/quic/core/quic_interval_set_test.cc", "src/quic/core/quic_interval_set_test.cc",
"src/quic/core/quic_interval_test.cc", "src/quic/core/quic_interval_test.cc",
......
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