Index: net/quic/quic_dispatcher.h |
diff --git a/net/quic/quic_dispatcher.h b/net/quic/quic_dispatcher.h |
index e7a5e950133917d183a5132acee991adf2b5241f..684461d9e1aa4f1df26c9c80231ff4f8d9aa4c73 100644 |
--- a/net/quic/quic_dispatcher.h |
+++ b/net/quic/quic_dispatcher.h |
@@ -137,11 +137,6 @@ class QuicDispatcher : public QuicBlockedWriterInterface, |
return supported_versions_; |
} |
- const QuicVersionVector& supported_versions_no_connection_flow_control() |
- const { |
- return supported_versions_no_connection_flow_control_; |
- } |
- |
const IPEndPoint& current_server_address() { |
return current_server_address_; |
} |
@@ -206,14 +201,6 @@ class QuicDispatcher : public QuicBlockedWriterInterface, |
// skipped as necessary). |
const QuicVersionVector supported_versions_; |
- // Versions which do not support *connection* flow control (introduced in |
- // QUIC_VERSION_19). |
- // This is used to construct new QuicConnections when connection flow control |
- // is disabled via flag. |
- // TODO(rjshade): Remove this when |
- // FLAGS_enable_quic_connection_flow_control_2 is removed. |
- QuicVersionVector supported_versions_no_connection_flow_control_; |
- |
// Information about the packet currently being handled. |
IPEndPoint current_client_address_; |
IPEndPoint current_server_address_; |