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

Unified Diff: net/quic/quic_dispatcher.cc

Issue 330333006: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix linus_tsan error - reverted the change to ConnectionMigrationClientPortChanged unitttest Created 6 years, 6 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/quic/quic_dispatcher.h ('k') | net/quic/quic_end_to_end_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_dispatcher.cc
diff --git a/net/quic/quic_dispatcher.cc b/net/quic/quic_dispatcher.cc
index d1fe193b37e6d96f2e35261f26ff24ff098c1c36..2d35df36c37353302f7d7f3f3505c8bf9e3f10eb 100644
--- a/net/quic/quic_dispatcher.cc
+++ b/net/quic/quic_dispatcher.cc
@@ -157,8 +157,7 @@ class QuicDispatcher::QuicFramerVisitor : public QuicFramerVisitorInterface {
QuicDispatcher::QuicDispatcher(const QuicConfig& config,
const QuicCryptoServerConfig& crypto_config,
const QuicVersionVector& supported_versions,
- QuicConnectionHelperInterface* helper,
- uint32 initial_flow_control_window_bytes)
+ QuicConnectionHelperInterface* helper)
: config_(config),
crypto_config_(crypto_config),
helper_(helper),
@@ -169,8 +168,7 @@ QuicDispatcher::QuicDispatcher(const QuicConfig& config,
supported_versions_no_connection_flow_control_(supported_versions),
current_packet_(NULL),
framer_(supported_versions, /*unused*/ QuicTime::Zero(), true),
- framer_visitor_(new QuicFramerVisitor(this)),
- initial_flow_control_window_bytes_(initial_flow_control_window_bytes) {
+ framer_visitor_(new QuicFramerVisitor(this)) {
framer_.set_visitor(framer_visitor_.get());
}
@@ -371,7 +369,6 @@ QuicSession* QuicDispatcher::CreateQuicSession(
QuicServerSession* session = new QuicServerSession(
config_,
CreateQuicConnection(connection_id, server_address, client_address),
- initial_flow_control_window_bytes_,
this);
session->InitializeSession(crypto_config_);
return session;
« no previous file with comments | « net/quic/quic_dispatcher.h ('k') | net/quic/quic_end_to_end_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698