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

Unified Diff: net/http/http_network_session.cc

Issue 1841583002: QUIC - Added "Disable QUIC On Timeout With Open Streams" to QUIC tab in (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « chrome/browser/resources/net_internals/quic_view.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_session.cc
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index 748f27ecbe3c94f535fb417d18412f32374b9e3c..df5cdcb96fcc46c5d0fe8b37e955e41964464b46 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -340,6 +340,8 @@ scoped_ptr<base::Value> HttpNetworkSession::QuicInfoToValue() const {
params_.quic_idle_connection_timeout_seconds);
dict->SetBoolean("disable_preconnect_if_0rtt",
params_.quic_disable_preconnect_if_0rtt);
+ dict->SetBoolean("disable_quic_on_timeout_with_open_streams",
+ params_.disable_quic_on_timeout_with_open_streams);
dict->SetString("disabled_reason",
quic_stream_factory_.QuicDisabledReasonString());
return std::move(dict);
« no previous file with comments | « chrome/browser/resources/net_internals/quic_view.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698