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

Unified Diff: net/quic/core/quic_connection.cc

Issue 2350863002: Deprecate FLAGS_quic_do_not_send_ack_on_emsgsize. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/quic/core/quic_connection_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_connection.cc
diff --git a/net/quic/core/quic_connection.cc b/net/quic/core/quic_connection.cc
index f8d0049da3523e1c85741909abb710e34b7b714a..5793b15c890fc76a99d8563d77a2a59664f47fe1 100644
--- a/net/quic/core/quic_connection.cc
+++ b/net/quic/core/quic_connection.cc
@@ -1786,10 +1786,7 @@ void QuicConnection::OnWriteError(int error_code) {
if (FLAGS_quic_close_connection_on_packet_too_large) { // NOLINT
CloseConnection(
QUIC_PACKET_WRITE_ERROR, error_details,
- FLAGS_quic_do_not_send_ack_on_emsgsize
- ? ConnectionCloseBehavior::
- SEND_CONNECTION_CLOSE_PACKET_WITH_NO_ACK
- : ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET);
+ ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET_WITH_NO_ACK);
break;
}
default:
« no previous file with comments | « no previous file | net/quic/core/quic_connection_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698