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

Unified Diff: net/tools/quic/quic_dispatcher.cc

Issue 1714713002: Landing Recent QUIC changes until 2/12/2016 21:32 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « net/tools/quic/quic_dispatcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_dispatcher.cc
diff --git a/net/tools/quic/quic_dispatcher.cc b/net/tools/quic/quic_dispatcher.cc
index bcfd92b4c8d66f3e79781270c8577e4781678056..28c31a8f70ed7730f99b424c0760a58114f38f75 100644
--- a/net/tools/quic/quic_dispatcher.cc
+++ b/net/tools/quic/quic_dispatcher.cc
@@ -443,13 +443,7 @@ QuicServerSessionBase* QuicDispatcher::CreateQuicSession(
}
QuicTimeWaitListManager* QuicDispatcher::CreateQuicTimeWaitListManager() {
- if (FLAGS_quic_time_wait_list_manager_use_shared_writer) {
- return new QuicTimeWaitListManager(writer_.get(), this, helper_.get());
- } else {
- time_wait_list_writer_.reset(CreatePerConnectionWriter());
- return new QuicTimeWaitListManager(time_wait_list_writer_.get(), this,
- helper_.get());
- }
+ return new QuicTimeWaitListManager(writer_.get(), this, helper_.get());
}
bool QuicDispatcher::HandlePacketForTimeWait(
« no previous file with comments | « net/tools/quic/quic_dispatcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698