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

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

Issue 330333006: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: net/tools/quic/quic_dispatcher.h
diff --git a/net/tools/quic/quic_dispatcher.h b/net/tools/quic/quic_dispatcher.h
index 4ec5449fe06b28f085e82ed941b53af7c1530b6c..2468f1cc82f5166bc8cbd8bb1ebf7133387fbaf7 100644
--- a/net/tools/quic/quic_dispatcher.h
+++ b/net/tools/quic/quic_dispatcher.h
@@ -61,8 +61,7 @@ class QuicDispatcher : public QuicServerSessionVisitor {
QuicDispatcher(const QuicConfig& config,
const QuicCryptoServerConfig& crypto_config,
const QuicVersionVector& supported_versions,
- EpollServer* epoll_server,
- uint32 initial_flow_control_window_bytes);
+ EpollServer* epoll_server);
virtual ~QuicDispatcher();
@@ -166,10 +165,6 @@ class QuicDispatcher : public QuicServerSessionVisitor {
QuicPacketWriter* writer() { return writer_.get(); }
- const uint32 initial_flow_control_window_bytes() const {
- return initial_flow_control_window_bytes_;
- }
-
private:
class QuicFramerVisitor;
friend class net::tools::test::QuicDispatcherPeer;
@@ -238,10 +233,6 @@ class QuicDispatcher : public QuicServerSessionVisitor {
QuicFramer framer_;
scoped_ptr<QuicFramerVisitor> framer_visitor_;
- // Initial flow control window size to advertize to peer on newly created
- // connections.
- const uint32 initial_flow_control_window_bytes_;
-
DISALLOW_COPY_AND_ASSIGN(QuicDispatcher);
};

Powered by Google App Engine
This is Rietveld 408576698