Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Issue 1979763002: Landing Recent QUIC changes until Sun May 8 00:39:29 2016 +0000 (Closed)

Created:
4 years, 7 months ago by Buck
Modified:
4 years, 7 months ago
Reviewers:
Ryan Hamilton
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Landing Recent QUIC changes until Sun May 8 00:39:29 2016 +0000 Combine OnCongestionWindowChange and OnRttChange to OnCongestionChange in QuicSentPacketManager::NetworkChangeVisitor. No functional change expected. Merge internal change: 121761990 https://codereview.chromium.org/1981643002/ Clean up the pretty-printing of QUIC frames to be internally consistent. Merge internal change: 121732198 https://codereview.chromium.org/1979633003/ Rename the QUIC stream frame fields frame_buffer and frame_length to data_buffer and data_length because they do only contain info about the *data* not the full frame. Merge internal change: 121705514 https://codereview.chromium.org/1979743002/ Only set one QUIC sending alarm at once. Flag protected by --quic_only_one_sending_alarm. Merge internal change: 121700577 https://codereview.chromium.org/1980783002/ Attempts to reduce test flakiness by setting more lenient handshake timeouts. Similar to internal change 121514052. Merge internal change: 121671674 https://codereview.chromium.org/1978953003/ Reduces flakiness of EndToEndTest.ConnectionMigrationClientPortChanged. Merge internal change: 121671298 https://codereview.chromium.org/1976393002/ Remove CubicTest::CwndIncreaseStatsDuringConvexRegion because it expects and asserts nothing Merge internal change: 121638470 https://codereview.chromium.org/1974333004/ Minor clean up of QuicDispatcherTests * Use an actual serialized CHLO instead of "foo" for stream data. * Move all QuicDispatcherTests together, before the QuicDispatcherStatelessRejectTest Merge internal change: 121604756 https://codereview.chromium.org/1983493002/ Rename various MockConnectionFoo classes to MockQuicConnectionFoo. No behavior change. This is consistent with other Mock classes (e.g. MockQuicDispatcher, MockQuicSpdySession). Merge internal change: 121596064 https://codereview.chromium.org/1977153002/ Deprecate --quic_stateless_version_negotiation Merge internal change: 121576119 https://codereview.chromium.org/1975403002/ Deprecate --quic_ignore_invalid_error_code. Merge internal change: 121437600 https://codereview.chromium.org/1976343002/ Add a new QUIC ChloExtractor class used by the QuicProxyDispatcher to extract CHLO message from packets. protected by --quic_use_chlo_extractor This CL deprecates QuicPacketParser which allocates a clone of the CryptoHandshakeMessage making it somewhat undesirable for use in "cheap" stateless rejects. Merge internal change: 121416043 https://codereview.chromium.org/1980663003/ Joins Cookie header components correctly. A follow-on fix for internal change 121373674. RFC 7540 section 8.1.2.5 specifies that cookie crumbs should be reconstructed with a "; " delimiter. Merge internal change: 121403250 https://codereview.chromium.org/1974673004/ Deprecate --quic_use_socket_timestamp. Merge internal change: 121398461 https://codereview.chromium.org/1978913002 Fixes header translation between SpdyHeaderBlock and other data structures. Not protected. In SPDY, header fields with multiple values are represented in a SpdyHeaderBlock by joining the multiple values together with a null character. This change fixes QUIC-specific utilities that work with SpdyHeaderBlocks. Merge internal change: 121373674 https://codereview.chromium.org/1976473003/ Add original_path_id to SerializedPacket and OnPacketSent. No functional change expected. Merge internal change: 121370394 https://codereview.chromium.org/1962643003/ R=rch@chromium.org BUG= Committed: https://crrev.com/a7fd124f9bd96195f24fc88c10f953d39cc01936 Cr-Commit-Position: refs/heads/master@{#393750}

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1217 lines, -690 lines) Patch
M net/BUILD.gn View 1 chunk +2 lines, -0 lines 0 comments Download
M net/net.gyp View 1 chunk +2 lines, -0 lines 0 comments Download
M net/net.gypi View 1 chunk +1 line, -0 lines 0 comments Download
M net/quic/congestion_control/cubic_bytes_test.cc View 2 chunks +0 lines, -36 lines 0 comments Download
M net/quic/congestion_control/cubic_test.cc View 2 chunks +0 lines, -32 lines 0 comments Download
M net/quic/quic_chromium_client_stream_test.cc View 2 chunks +5 lines, -5 lines 0 comments Download
M net/quic/quic_client_promised_info_test.cc View 2 chunks +5 lines, -5 lines 0 comments Download
M net/quic/quic_client_push_promise_index_test.cc View 2 chunks +5 lines, -5 lines 0 comments Download
M net/quic/quic_connection.h View 3 chunks +4 lines, -2 lines 0 comments Download
M net/quic/quic_connection.cc View 9 chunks +31 lines, -19 lines 0 comments Download
M net/quic/quic_connection_logger.h View 1 chunk +1 line, -0 lines 0 comments Download
M net/quic/quic_connection_logger.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/quic/quic_connection_logger_unittest.cc View 2 chunks +4 lines, -4 lines 0 comments Download
M net/quic/quic_connection_test.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/quic/quic_crypto_client_stream_test.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/quic/quic_crypto_server_stream_test.cc View 3 chunks +5 lines, -4 lines 0 comments Download
M net/quic/quic_crypto_stream_test.cc View 2 chunks +5 lines, -5 lines 0 comments Download
M net/quic/quic_flags.h View 3 chunks +2 lines, -3 lines 0 comments Download
M net/quic/quic_flags.cc View 2 chunks +4 lines, -12 lines 0 comments Download
M net/quic/quic_flow_controller_test.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M net/quic/quic_framer.cc View 6 chunks +12 lines, -27 lines 0 comments Download
M net/quic/quic_framer_test.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M net/quic/quic_headers_stream_test.cc View 14 chunks +30 lines, -30 lines 0 comments Download
M net/quic/quic_http_stream_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/quic_packet_creator.cc View 2 chunks +2 lines, -0 lines 0 comments Download
M net/quic/quic_packet_creator_test.cc View 14 chunks +15 lines, -15 lines 0 comments Download
M net/quic/quic_packet_generator.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/quic_protocol.h View 5 chunks +9 lines, -5 lines 0 comments Download
M net/quic/quic_protocol.cc View 6 chunks +48 lines, -42 lines 0 comments Download
M net/quic/quic_protocol_test.cc View 1 chunk +102 lines, -0 lines 0 comments Download
M net/quic/quic_sent_packet_manager.h View 3 chunks +5 lines, -6 lines 0 comments Download
M net/quic/quic_sent_packet_manager.cc View 5 chunks +3 lines, -10 lines 0 comments Download
M net/quic/quic_sent_packet_manager_test.cc View 31 chunks +41 lines, -63 lines 0 comments Download
M net/quic/quic_session.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/quic_session_test.cc View 3 chunks +7 lines, -7 lines 0 comments Download
M net/quic/quic_spdy_stream_test.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M net/quic/quic_stream_sequencer.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/quic/quic_stream_sequencer_test.cc View 4 chunks +9 lines, -9 lines 0 comments Download
M net/quic/reliable_quic_stream.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/reliable_quic_stream_test.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M net/quic/spdy_utils.cc View 2 chunks +14 lines, -5 lines 0 comments Download
M net/quic/spdy_utils_test.cc View 2 chunks +124 lines, -0 lines 0 comments Download
M net/quic/test_tools/crypto_test_utils.h View 1 chunk +2 lines, -2 lines 0 comments Download
M net/quic/test_tools/crypto_test_utils.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M net/quic/test_tools/quic_test_utils.h View 11 chunks +43 lines, -43 lines 0 comments Download
M net/quic/test_tools/quic_test_utils.cc View 6 chunks +72 lines, -67 lines 0 comments Download
M net/quic/test_tools/simple_quic_framer.cc View 1 chunk +1 line, -1 line 0 comments Download
A net/tools/quic/chlo_extractor.h View 1 chunk +40 lines, -0 lines 0 comments Download
A net/tools/quic/chlo_extractor.cc View 1 chunk +170 lines, -0 lines 0 comments Download
A net/tools/quic/chlo_extractor_test.cc View 1 chunk +139 lines, -0 lines 0 comments Download
M net/tools/quic/end_to_end_test.cc View 2 chunks +12 lines, -4 lines 0 comments Download
M net/tools/quic/quic_client_session_test.cc View 4 chunks +8 lines, -7 lines 0 comments Download
M net/tools/quic/quic_dispatcher.cc View 2 chunks +15 lines, -28 lines 0 comments Download
M net/tools/quic/quic_dispatcher_test.cc View 18 chunks +95 lines, -105 lines 0 comments Download
M net/tools/quic/quic_packet_printer_bin.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/tools/quic/quic_packet_reader.cc View 2 chunks +7 lines, -9 lines 0 comments Download
M net/tools/quic/quic_server_session_base_test.cc View 3 chunks +7 lines, -7 lines 0 comments Download
M net/tools/quic/quic_simple_server_session_test.cc View 5 chunks +16 lines, -13 lines 0 comments Download
M net/tools/quic/quic_simple_server_stream_test.cc View 3 chunks +8 lines, -8 lines 0 comments Download
M net/tools/quic/quic_simple_server_test.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M net/tools/quic/quic_socket_utils.cc View 1 chunk +4 lines, -6 lines 0 comments Download
M net/tools/quic/quic_spdy_client_stream_test.cc View 3 chunks +7 lines, -7 lines 0 comments Download
M net/tools/quic/spdy_balsa_utils.cc View 4 chunks +26 lines, -3 lines 0 comments Download
M net/tools/quic/spdy_balsa_utils_test.cc View 4 chunks +18 lines, -0 lines 0 comments Download

Messages

Total messages: 7 (2 generated)
Buck
4 years, 7 months ago (2016-05-14 00:29:09 UTC) #1
Ryan Hamilton
lgtm
4 years, 7 months ago (2016-05-14 15:48:51 UTC) #3
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1979763002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1979763002/1
4 years, 7 months ago (2016-05-14 15:49:13 UTC) #4
commit-bot: I haz the power
Committed patchset #1 (id:1)
4 years, 7 months ago (2016-05-14 20:36:12 UTC) #5
commit-bot: I haz the power
4 years, 7 months ago (2016-05-14 20:38:14 UTC) #7
Message was sent while issue was closed.
Patchset 1 (id:??) landed as
https://crrev.com/a7fd124f9bd96195f24fc88c10f953d39cc01936
Cr-Commit-Position: refs/heads/master@{#393750}

Powered by Google App Engine
This is Rietveld 408576698