Rolling 2 dependencies
Roll src/net/third_party/quiche/src/ 07cc9389a..9e84364c1 (26 commits)
https://quiche.googlesource.com/quiche.git/+log/07cc9389a43d..9e84364c1893
$ git log 07cc9389a..9e84364c1 --date=short --no-merges --format='%ad %ae %s'
2019-04-12 zhongyi Automated g4 rollback of changelist 242988047.
2019-04-12 bnc Remove |frame_len| argument from OnHeadersFrameEnd().
2019-04-11 vasilvv Fix a compile error in https://ci.chromium.org/p/chromium/builders/ci/ios-device-xcode-clang/93619
2019-04-11 danzh Add a new implementation of SpdyUnsafeArena for code sharing between chromium and envoy. This new implementation is merely a copy of SpdyUnsafeArenaImpl from chromium (https://cs.chromium.org/chromium/src/net/spdy/platform/impl/spdy_unsafe_arena_impl.h?g=0&l=17) which itself is an older data structure used by SpdyHeaderBlock.
2019-04-11 wub Internal QUICHE change
2019-04-10 dschinazi Add new methods to QuicFramer for controlling decrypters
2019-04-10 zhongyi gfe-relnote: ignore TLPR for retransmission delay in TLP mode when sending pings from the ping alarm. Flag protected by quic_ignore_tlpr_if_stream_not_waiting_ack.
2019-04-10 zhongyi Change a int to unsigned int in quic_framer_test.cc
2019-04-10 renjietang Fix unsigned number format.
2019-04-10 danzh gfe-relnote: n/a(test only) De-platform-ize SPDY_FRIEND_TEST macros with peer class.
2019-04-10 vasilvv Include netinet/in.h in quic_ip_address.h
2019-04-10 renjietang Impose upper limit on the frame length of some HTTP/3 frames. This helps prevent attacks that send malformed data.
2019-04-10 wub Internal QUICHE change
2019-04-10 fkastenholz Remove IETF QUIC Application Close frame, replace with Connection Close
2019-04-10 ianswett Internal QUICHE change
2019-04-09 vasilvv Add custom leakr file to QUICHE
2019-04-09 dschinazi Make sure QuicVersionsTest.InitializeSupportForIetfDraft reverts global state
2019-04-09 nharper Add new methods to QuicFramer for controlling decrypters
2019-04-09 vasilvv Migrate some of the uses of QuicIpAddress(QuicIpAddressImpl) constructor to quic::ToQuicIpAddress
2019-04-09 quiche-dev Test QUIC behavior in the worst-case Leto fallback situation
2019-04-09 dschinazi Rename quic::kMaxPacketSize to quic::kMaxOutgoingPacketSize
2019-04-09 quiche-dev Create a QuicAlarm-based source for random test data for Quartc.
2019-04-09 dschinazi Add ALPN to QUIC when using TLS
2019-04-09 fkastenholz Add datatypes needed for IETF CONNECTION_CLOSE support.
2019-04-08 wub gfe-relnote: (n/a) Stop including send_algorithm_interface.h from quic_pcc_sender.h, this allows the quic_pcc_sender Envoy implementation to not to depend on send_algorithm_interface. Refactor only, not protected.
2019-04-05 dschinazi Increase maximum size of allowed incoming packets and remove incorrect QUIC_BUG
Roll src/third_party/quic_trace/src/ 247dc7c7f..530e50907 (2 commits)
https://chromium.googlesource.com/external/github.com/google/quic-trace.git/+log/247dc7c7f518..530e50907576
$ git log 247dc7c7f..530e50907 --date=short --no-merges --format='%ad %ae %s'
2019-04-10 zhongyi Add CloseType to quic_trace
2019-04-07 martenseemann fix typo in README
Created with:
roll-dep src/net/third_party/quiche/src src/third_party/quic_trace/src
Change-Id: Ibdb8ba60f639c0860ce88c197f0978227f44e252
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565239
Reviewed-by: Bence Béky <[email protected]>
Commit-Queue: Zhongyi Shi <[email protected]>
Cr-Commit-Position: refs/heads/master@{#650363}
diff --git a/net/quic/quic_proxy_client_socket_unittest.cc b/net/quic/quic_proxy_client_socket_unittest.cc
index e5ed0a6..60e259eb 100644
--- a/net/quic/quic_proxy_client_socket_unittest.cc
+++ b/net/quic/quic_proxy_client_socket_unittest.cc
@@ -173,7 +173,7 @@
EXPECT_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
.Times(testing::AtLeast(1));
EXPECT_CALL(*send_algorithm_, GetCongestionWindow())
- .WillRepeatedly(Return(quic::kMaxPacketSize));
+ .WillRepeatedly(Return(quic::kMaxOutgoingPacketSize));
EXPECT_CALL(*send_algorithm_, PacingRate(_))
.WillRepeatedly(Return(quic::QuicBandwidth::Zero()));
EXPECT_CALL(*send_algorithm_, CanSend(_)).WillRepeatedly(Return(true));