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

Unified Diff: net/quic/quic_stream_factory.h

Issue 938003003: Add a new enable_nonblocking_io field trial param for QUIC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: working Created 5 years, 10 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
Index: net/quic/quic_stream_factory.h
diff --git a/net/quic/quic_stream_factory.h b/net/quic/quic_stream_factory.h
index 8a3437bc9dc71f7f99877ef771176aec5248a54c..43b803ce757a7f2fef2322e96f52675e7a916e3c 100644
--- a/net/quic/quic_stream_factory.h
+++ b/net/quic/quic_stream_factory.h
@@ -109,6 +109,7 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
float load_server_info_timeout_srtt_multiplier,
bool enable_truncated_connection_ids,
bool enable_connection_racing,
+ bool enable_nonblocking_io,
bool disable_disk_cache,
const QuicTagVector& connection_options);
~QuicStreamFactory() override;
@@ -329,6 +330,9 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
// config from the disk cache.
bool enable_connection_racing_;
+ // Set if experimental non-blocking IO should be used on windows sockets.
+ bool enable_nonblocking_io_;
+
// Set if we do not want to load server config from the disk cache.
bool disable_disk_cache_;

Powered by Google App Engine
This is Rietveld 408576698