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

Issue 2547583002: Landing Recent QUIC changes until Fri Nov 18 23:21:04 2016 +0000 (Closed)

Created:
4 years ago by Victor Vasiliev
Modified:
4 years ago
Reviewers:
mef, Ryan Hamilton
CC:
chromium-reviews, cbentzel+watch_chromium.org, eroman, mmenke
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Landing Recent QUIC changes until Fri Nov 18 23:21:04 2016 +0000 Remove the "New" prefix from various Ack-related structs/methods in QuicFramer now that there are only "new" acks. Merge internal change: 139629781 https://codereview.chromium.org/2543953003/ Delete unused QuicData::owns_buffer method. No behavior change. Merge internal change: 139611586 https://codereview.chromium.org/2544033002/ Split up quic_frames.{h,cc} into files for each frame type. Merge internal change: 139607554 https://codereview.chromium.org/2545543003/ Fix MSAN failure due to reading from an uninitialized variable. No functional change (the variable is not used in uninitialized state). Merge internal change: 139593422 https://codereview.chromium.org/2546583002/ Move PacketTimeVector typedef to quic_types.h. No behavior change. Merge internal change: 139577765 https://codereview.chromium.org/2541233002/ Remove unnecessary (and incorrectly named) MaybeRemoveTransmittableFrames method. No behavior change. MaybeRemoveRetransmittableFrames is only called from inside RemoveRetransmittability, and it unconditionally removes frames, no "maybe" about it :-) Merge internal change: 139571201 https://codereview.chromium.org/2535753006/ Remove call to SetMaxPacketLength from QuicPacketCreator::OnSerializedPacket, as it will always be a no-op/early return. No behavior change. Calling SetMaxPacketLength with max_packet_length_ as the argument hits the early return here: https://chromium.googlesource.com/chromium/src/+/bdbe864eb7ecdf545a6f6a63b635466f9c9465da/net/quic/core/quic_packet_creator.cc#74 Merge internal change: 139571059 https://codereview.chromium.org/2543833003/ Allow congestion controller state to be accessed by the debug visitors. Merge internal change: 139513656 https://codereview.chromium.org/2540143003/ Implement pretty-printer for QuicConnectionStats This function was declared in the header file, but didn't seem to be defined anywhere? I plan to use this function in an upcoming CL for exercising various congestion-control algorithms. Merge internal change: 139496268 https://codereview.chromium.org/2543813002/ Construct QuicFrames vectors directly in QuicFramerTest. Merge internal change: 139492573 https://codereview.chromium.org/2538243002/ Delete unused index variable. No behavior change. Merge internal change: 139492399 https://codereview.chromium.org/2543463005/ Make QuicClientBase::WaitForCryptoHandshakeComplete return false if the handshake fails. There's currently no verification that the handshake has succeeded when this method returns, resulting in buggy tests. Merge internal change: 139469341 https://codereview.chromium.org/2542743003/ Write a regression test demonstrating that a QuicCryptoClientStream can receive and use a server config update with a valid certs and proofs. Merge internal change: 139457701 https://codereview.chromium.org/2538923003/ Fix a bug in the handling of SCUP messages in QUIC clients. Merge internal change: 139373466 https://codereview.chromium.org/2544493003/ Move QuicAckListenerInterface, QuicPendingRetransmission, and QuicTransmissionInfo out of quic_packets.{h,cc}. No behavior change. Merge internal change: 139371729 https://codereview.chromium.org/2531163009/ Print out detailed_error_ in various LOG statements in QuicFramer. Merge internal change: 139361927 https://codereview.chromium.org/2540873002/ Add ENDPOINT macro to QuicFramer (and include in existing LOG statement output). Merge internal change: 139353951 https://codereview.chromium.org/2533303004/ Rename QuicInMemoryCache to QuicHttpResponseCache. Merge internal change: 139246544 https://codereview.chromium.org/2532083005/ Rename quic_protocol to quic_packets. No behavior change. Merge internal change: 139216821 https://codereview.chromium.org/2541673002/ Move remaining tests from quic_protocol_test.cc into appropriate locations. These were missed during previous refactors. Merge internal change: 139210181 https://codereview.chromium.org/2534253002/ Remove uses of gfe2::test::GenerateBody from QUIC code and use the string fill constructor instead. Merge internal change: 139197459 https://codereview.chromium.org/2536033004/ QUIC - bugfix for forced head of line blocking experiment. Guarded by ENABLED --FLAGS_quic_bugfix_fhol_writev_fin_only_v2. Fix bugs in FHOL: o handle fin-only writev correctly. o limit additional buffering to one HTTP/2 Data frame (~16KB). o make headers stream flow control a large fixed size, rather than using autotuning. This is a redo of internal change 134345701, the only difference being the headers stream flow control window size. Merge internal change: 136086759 https://codereview.chromium.org/2535373002/ Split out QUIC frame definitions into quic_frames. No behavior change. Merge internal change: 139196641 https://codereview.chromium.org/2537233002/ Remove unnecessary virtual keyword from QuicDefaultPacketWriter. No behavior change. Merge internal change: 139192665 https://codereview.chromium.org/2537753004/ Add QUIC client connection options. Only respected on the client side. No functional change. Protected by ENABLED FLAGS_quic_client_connection_options. Existing users of HasClientSentConnectionOptions are unchanged in order to preserve existing behavior. New users use HasClientRequestedIndependentOption. Merge internal change: 139159621 https://codereview.chromium.org/2537543005/ Move QuicVersionManager into standalone .h/.cc. No behavior change. Merge internal change: 139117022 https://codereview.chromium.org/2535283002/ R=rch@chromium.org BUG= CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_cronet_tester Committed: https://crrev.com/28270e8feac1cc094dff71351042f1d7fdb1d4e2 Cr-Commit-Position: refs/heads/master@{#435721}

Patch Set 1 #

Patch Set 2 : Add a missing flag saver. #

Patch Set 3 : Fix io_thread unit tests #

Patch Set 4 : Add missing header #

Patch Set 5 : Remove explicit HTTP/2 enum usage #

Unified diffs Side-by-side diffs Delta from patch set Stats (+3314 lines, -3634 lines) Patch
M chrome/browser/io_thread_unittest.cc View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M components/cronet/android/cronet_bidirectional_stream_adapter.cc View 1 chunk +1 line, -1 line 0 comments Download
M components/cronet/android/cronet_url_request_adapter.cc View 1 chunk +1 line, -1 line 0 comments Download
M components/cronet/android/test/quic_test_server.cc View 5 chunks +6 lines, -6 lines 0 comments Download
M components/cronet/url_request_context_config.cc View 1 chunk +1 line, -1 line 0 comments Download
M components/domain_reliability/quic_error_mapping.h View 1 chunk +1 line, -1 line 0 comments Download
M components/domain_reliability/quic_error_mapping.cc View 1 chunk +1 line, -1 line 0 comments Download
M components/grpc_support/test/quic_test_server.cc View 4 chunks +9 lines, -9 lines 0 comments Download
M components/network_session_configurator/network_session_configurator.cc View 1 chunk +1 line, -1 line 0 comments Download
M components/network_session_configurator/network_session_configurator_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/BUILD.gn View 1 chunk +2 lines, -2 lines 0 comments Download
M net/base/net_error_details.h View 1 chunk +1 line, -1 line 0 comments Download
A + net/data/quic_http_response_cache_data/quic-datatesturl.com/index.html View 0 chunks +-1 lines, --1 lines 0 comments Download
A + net/data/quic_http_response_cache_data_with_push/quic-datatesturl.com/favicon.ico View Binary file 0 comments Download
A + net/data/quic_http_response_cache_data_with_push/quic-datatesturl.com/index.html View 0 chunks +-1 lines, --1 lines 0 comments Download
A + net/data/quic_http_response_cache_data_with_push/quic-datatesturl.com/index2.html View 0 chunks +-1 lines, --1 lines 0 comments Download
A + net/data/quic_http_response_cache_data_with_push/quic-datatesturl.com/kitten-1.jpg View Binary file 0 comments Download
D net/data/quic_in_memory_cache_data/quic-datatesturl.com/index.html View 1 chunk +0 lines, -14 lines 0 comments Download
D net/data/quic_in_memory_cache_data_with_push/quic-datatesturl.com/favicon.ico View Binary file 0 comments Download
D net/data/quic_in_memory_cache_data_with_push/quic-datatesturl.com/index.html View 1 chunk +0 lines, -15 lines 0 comments Download
D net/data/quic_in_memory_cache_data_with_push/quic-datatesturl.com/index2.html View 1 chunk +0 lines, -16 lines 0 comments Download
D net/data/quic_in_memory_cache_data_with_push/quic-datatesturl.com/kitten-1.jpg View Binary file 0 comments Download
M net/http/http_network_session.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/http/http_stream_factory.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/log/net_log_util.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/net.gypi View 7 chunks +36 lines, -4 lines 0 comments Download
M net/quic/chromium/mock_quic_data.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_chromium_alarm_factory.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_chromium_client_session.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_chromium_client_session_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_chromium_connection_helper.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_chromium_packet_reader.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_chromium_packet_writer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_connection_logger.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_connection_logger.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_end_to_end_unittest.cc View 4 chunks +5 lines, -5 lines 0 comments Download
M net/quic/chromium/quic_http_stream.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/chromium/quic_stream_factory.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/bandwidth_sampler.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/bbr_sender.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/bbr_sender.cc View 1 chunk +2 lines, -1 line 0 comments Download
M net/quic/core/congestion_control/bbr_sender_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/cubic.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/cubic_bytes.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/general_loss_algorithm.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/general_loss_algorithm.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/hybrid_slow_start.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/loss_detection_interface.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/pacing_sender.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/pacing_sender_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/prr_sender.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/prr_sender_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/rtt_stats.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/send_algorithm_interface.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/send_algorithm_interface.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_base.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_bytes.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_packets.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_packets_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/windowed_filter_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/crypto_framer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/crypto_framer_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/crypto_handshake.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/crypto_handshake_message.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/crypto_protocol.h View 1 chunk +1 line, -0 lines 0 comments Download
M net/quic/core/crypto/crypto_utils.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/proof_source.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/proof_verifier.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/quic_crypto_client_config.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/quic_crypto_server_config.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/quic_decrypter.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/crypto/quic_encrypter.h View 1 chunk +1 line, -1 line 0 comments Download
A net/quic/core/frames/quic_ack_frame.h View 1 chunk +132 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_ack_frame.cc View 1 chunk +163 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_blocked_frame.h View 1 chunk +31 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_blocked_frame.cc View 1 chunk +19 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_connection_close_frame.h View 1 chunk +29 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_connection_close_frame.cc View 1 chunk +21 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_frame.h View 1 chunk +81 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_frame.cc View 1 chunk +163 lines, -0 lines 0 comments Download
A + net/quic/core/frames/quic_frame_test.cc View 11 chunks +33 lines, -59 lines 0 comments Download
A net/quic/core/frames/quic_goaway_frame.h View 1 chunk +32 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_goaway_frame.cc View 1 chunk +29 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_mtu_discovery_frame.h View 1 chunk +18 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_padding_frame.h View 1 chunk +31 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_padding_frame.cc View 1 chunk +17 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_path_close_frame.h View 1 chunk +32 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_path_close_frame.cc View 1 chunk +18 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_ping_frame.h View 1 chunk +18 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_rst_stream_frame.h View 1 chunk +36 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_rst_stream_frame.cc View 1 chunk +27 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_stop_waiting_frame.h View 1 chunk +28 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_stop_waiting_frame.cc View 1 chunk +23 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_stream_frame.h View 1 chunk +79 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_stream_frame.cc View 1 chunk +82 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_window_update_frame.h View 1 chunk +36 lines, -0 lines 0 comments Download
A net/quic/core/frames/quic_window_update_frame.cc View 1 chunk +22 lines, -0 lines 0 comments Download
A net/quic/core/quic_ack_listener_interface.h View 1 chunk +48 lines, -0 lines 0 comments Download
A net/quic/core/quic_ack_listener_interface.cc View 1 chunk +20 lines, -0 lines 0 comments Download
M net/quic/core/quic_buffered_packet_store.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_client_promised_info.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_config.h View 3 chunks +15 lines, -2 lines 0 comments Download
M net/quic/core/quic_config.cc View 2 chunks +18 lines, -0 lines 0 comments Download
M net/quic/core/quic_config_test.cc View 2 chunks +51 lines, -1 line 0 comments Download
M net/quic/core/quic_connection.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_connection.cc View 2 chunks +2 lines, -1 line 0 comments Download
M net/quic/core/quic_connection_stats.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_connection_stats.cc View 1 chunk +40 lines, -0 lines 0 comments Download
M net/quic/core/quic_connection_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_crypto_client_stream.h View 1 chunk +2 lines, -0 lines 0 comments Download
M net/quic/core/quic_crypto_client_stream.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/quic/core/quic_crypto_client_stream_test.cc View 2 chunks +36 lines, -1 line 0 comments Download
M net/quic/core/quic_crypto_server_stream.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_crypto_server_stream_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_crypto_stream.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_data_reader.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_data_writer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_flags_list.h View 1 chunk +4 lines, -0 lines 0 comments Download
M net/quic/core/quic_flow_controller.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_flow_controller.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_frame_list.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_framer.h View 5 chunks +12 lines, -13 lines 0 comments Download
M net/quic/core/quic_framer.cc View 27 chunks +50 lines, -35 lines 0 comments Download
M net/quic/core/quic_framer_test.cc View 30 chunks +30 lines, -80 lines 0 comments Download
M net/quic/core/quic_header_list.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_headers_stream.h View 2 chunks +8 lines, -3 lines 0 comments Download
M net/quic/core/quic_headers_stream.cc View 1 2 3 4 2 chunks +103 lines, -40 lines 0 comments Download
M net/quic/core/quic_headers_stream_test.cc View 1 2 3 4 4 chunks +68 lines, -2 lines 0 comments Download
M net/quic/core/quic_http_utils.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_multipath_received_packet_manager.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_multipath_sent_packet_manager.h View 3 chunks +4 lines, -2 lines 0 comments Download
M net/quic/core/quic_multipath_sent_packet_manager.cc View 3 chunks +14 lines, -4 lines 0 comments Download
M net/quic/core/quic_multipath_sent_packet_manager_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_multipath_transmissions_map.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_packet_creator.h View 2 chunks +3 lines, -2 lines 0 comments Download
M net/quic/core/quic_packet_creator.cc View 2 chunks +1 line, -6 lines 0 comments Download
M net/quic/core/quic_packet_creator_test.cc View 8 chunks +12 lines, -12 lines 0 comments Download
M net/quic/core/quic_packet_generator.h View 2 chunks +2 lines, -1 line 0 comments Download
M net/quic/core/quic_packet_generator.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_packet_writer.h View 1 chunk +1 line, -1 line 0 comments Download
A net/quic/core/quic_packets.h View 1 chunk +263 lines, -0 lines 0 comments Download
A net/quic/core/quic_packets.cc View 1 chunk +251 lines, -0 lines 0 comments Download
A net/quic/core/quic_pending_retransmission.h View 1 chunk +44 lines, -0 lines 0 comments Download
D net/quic/core/quic_protocol.h View 1 chunk +0 lines, -766 lines 0 comments Download
D net/quic/core/quic_protocol.cc View 1 chunk +0 lines, -775 lines 0 comments Download
D net/quic/core/quic_protocol_test.cc View 1 chunk +0 lines, -300 lines 0 comments Download
M net/quic/core/quic_received_packet_manager.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_sent_packet_manager.h View 6 chunks +16 lines, -13 lines 0 comments Download
M net/quic/core/quic_sent_packet_manager.cc View 14 chunks +88 lines, -46 lines 0 comments Download
M net/quic/core/quic_sent_packet_manager_interface.h View 3 chunks +8 lines, -2 lines 0 comments Download
M net/quic/core/quic_sent_packet_manager_test.cc View 3 chunks +57 lines, -2 lines 0 comments Download
M net/quic/core/quic_server_session_base.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_server_session_base_test.cc View 6 chunks +7 lines, -7 lines 0 comments Download
M net/quic/core/quic_session.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_session_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_simple_buffer_allocator_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_spdy_session.cc View 1 chunk +18 lines, -6 lines 0 comments Download
M net/quic/core/quic_spdy_stream.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_spdy_stream_test.cc View 6 chunks +7 lines, -12 lines 0 comments Download
M net/quic/core/quic_stream.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_stream_sequencer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_stream_sequencer.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_stream_sequencer_buffer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_stream_sequencer_buffer_interface.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/quic_tag_test.cc View 1 chunk +10 lines, -0 lines 0 comments Download
A net/quic/core/quic_transmission_info.h View 1 chunk +61 lines, -0 lines 0 comments Download
A net/quic/core/quic_transmission_info.cc View 1 chunk +45 lines, -0 lines 0 comments Download
M net/quic/core/quic_types.h View 2 chunks +2 lines, -0 lines 0 comments Download
M net/quic/core/quic_unacked_packet_map.h View 7 chunks +19 lines, -17 lines 0 comments Download
M net/quic/core/quic_unacked_packet_map.cc View 10 chunks +37 lines, -37 lines 0 comments Download
A net/quic/core/quic_version_manager.h View 1 chunk +44 lines, -0 lines 0 comments Download
A net/quic/core/quic_version_manager.cc View 1 chunk +37 lines, -0 lines 0 comments Download
A net/quic/core/quic_version_manager_test.cc View 1 2 3 1 chunk +32 lines, -0 lines 0 comments Download
M net/quic/core/quic_write_blocked_list.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/spdy_utils.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/crypto_test_utils.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/mock_quic_client_promised_info.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/mock_quic_dispatcher.h View 2 chunks +2 lines, -2 lines 0 comments Download
M net/quic/test_tools/mock_quic_dispatcher.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M net/quic/test_tools/mock_quic_spdy_client_stream.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_config_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_connection_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_flow_controller_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_flow_controller_peer.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_framer_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_framer_peer.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_packet_creator_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_packet_generator_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_received_packet_manager_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_received_packet_manager_peer.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_sent_packet_manager_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_sent_packet_manager_peer.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_session_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_spdy_session_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_stream_factory_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_stream_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_stream_sequencer_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_sustained_bandwidth_recorder_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_test_packet_maker.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_test_utils.h View 3 chunks +3 lines, -2 lines 0 comments Download
M net/quic/test_tools/simple_quic_framer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/simulator/port.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/simulator/quic_endpoint.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/chlo_extractor.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/end_to_end_test.cc View 55 chunks +79 lines, -96 lines 0 comments Download
M net/tools/quic/quic_client.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_client_base.h View 2 chunks +3 lines, -2 lines 0 comments Download
M net/tools/quic/quic_client_base.cc View 1 chunk +5 lines, -1 line 0 comments Download
M net/tools/quic/quic_client_bin.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_client_session.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_default_packet_writer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_dispatcher.h View 1 chunk +2 lines, -1 line 0 comments Download
M net/tools/quic/quic_epoll_connection_helper.h View 1 chunk +1 line, -1 line 0 comments Download
A + net/tools/quic/quic_http_response_cache.h View 3 chunks +5 lines, -5 lines 0 comments Download
A + net/tools/quic/quic_http_response_cache.cc View 12 chunks +57 lines, -49 lines 0 comments Download
A + net/tools/quic/quic_http_response_cache_test.cc View 11 chunks +27 lines, -27 lines 0 comments Download
D net/tools/quic/quic_in_memory_cache.h View 1 chunk +0 lines, -221 lines 0 comments Download
D net/tools/quic/quic_in_memory_cache.cc View 1 chunk +0 lines, -383 lines 0 comments Download
D net/tools/quic/quic_in_memory_cache_test.cc View 1 chunk +0 lines, -247 lines 0 comments Download
M net/tools/quic/quic_packet_reader.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_process_packet_interface.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_server.h View 4 chunks +6 lines, -5 lines 0 comments Download
M net/tools/quic/quic_server.cc View 6 chunks +11 lines, -11 lines 0 comments Download
M net/tools/quic/quic_server_bin.cc View 4 chunks +8 lines, -8 lines 0 comments Download
M net/tools/quic/quic_server_test.cc View 5 chunks +8 lines, -8 lines 0 comments Download
M net/tools/quic/quic_simple_client.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_simple_client_bin.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_simple_dispatcher.h View 3 chunks +4 lines, -4 lines 0 comments Download
M net/tools/quic/quic_simple_dispatcher.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M net/tools/quic/quic_simple_server.h View 3 chunks +4 lines, -3 lines 0 comments Download
M net/tools/quic/quic_simple_server.cc View 4 chunks +4 lines, -4 lines 0 comments Download
M net/tools/quic/quic_simple_server_bin.cc View 4 chunks +8 lines, -8 lines 0 comments Download
M net/tools/quic/quic_simple_server_packet_writer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_simple_server_session.h View 6 chunks +7 lines, -7 lines 0 comments Download
M net/tools/quic/quic_simple_server_session.cc View 6 chunks +7 lines, -7 lines 0 comments Download
M net/tools/quic/quic_simple_server_session_test.cc View 4 chunks +7 lines, -8 lines 0 comments Download
M net/tools/quic/quic_simple_server_stream.h View 3 chunks +4 lines, -4 lines 0 comments Download
M net/tools/quic/quic_simple_server_stream.cc View 5 chunks +9 lines, -9 lines 0 comments Download
M net/tools/quic/quic_simple_server_stream_test.cc View 17 chunks +27 lines, -27 lines 0 comments Download
M net/tools/quic/quic_simple_server_test.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/tools/quic/quic_socket_utils.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_spdy_client_stream.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_time_wait_list_manager.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_time_wait_list_manager.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/quic_time_wait_list_manager_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/stateless_rejector.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/test_tools/limited_mtu_test_writer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/test_tools/quic_test_client.h View 1 chunk +1 line, -1 line 0 comments Download
M net/tools/quic/test_tools/quic_test_server.h View 4 chunks +5 lines, -5 lines 0 comments Download
M net/tools/quic/test_tools/quic_test_server.cc View 8 chunks +15 lines, -15 lines 0 comments Download
M net/url_request/url_request_context_builder.h View 1 chunk +1 line, -1 line 0 comments Download
M net/url_request/url_request_quic_unittest.cc View 4 chunks +5 lines, -5 lines 0 comments Download

Messages

Total messages: 32 (25 generated)
Victor Vasiliev
4 years ago (2016-12-01 17:29:36 UTC) #1
Ryan Hamilton
lgtm, but please update the CL description to include the chromium URLs for each of ...
4 years ago (2016-12-01 18:03:02 UTC) #7
Victor Vasiliev
Adding mef@ for cronet and grpc_support.
4 years ago (2016-12-01 20:20:15 UTC) #20
mef
components/cronet and components/grpc_support lgtm
4 years ago (2016-12-01 20:27:38 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2547583002/80001
4 years ago (2016-12-01 21:23:49 UTC) #27
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years ago (2016-12-01 21:38:40 UTC) #30
commit-bot: I haz the power
4 years ago (2016-12-01 21:40:17 UTC) #32
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/28270e8feac1cc094dff71351042f1d7fdb1d4e2
Cr-Commit-Position: refs/heads/master@{#435721}

Powered by Google App Engine
This is Rietveld 408576698