Removed unused UberQuicStreamIdManager methods. gfe-relnote: unused code, not protected. PiperOrigin-RevId: 263190997 Change-Id: I1d4a37edf75d2a5d45b53ef570438c611287bc49
diff --git a/quic/core/uber_quic_stream_id_manager.cc b/quic/core/uber_quic_stream_id_manager.cc index 24c3b7c..c69bf24 100644 --- a/quic/core/uber_quic_stream_id_manager.cc +++ b/quic/core/uber_quic_stream_id_manager.cc
@@ -45,16 +45,6 @@ bidirectional_stream_id_manager_.AdjustMaxOpenOutgoingStreams(max_streams); } -void UberQuicStreamIdManager::ConfigureMaxOpenOutgoingBidirectionalStreams( - size_t max_streams) { - bidirectional_stream_id_manager_.ConfigureMaxOpenOutgoingStreams(max_streams); -} -void UberQuicStreamIdManager::ConfigureMaxOpenOutgoingUnidirectionalStreams( - size_t max_streams) { - unidirectional_stream_id_manager_.ConfigureMaxOpenOutgoingStreams( - max_streams); -} - // TODO(fkastenholz): SetMax is cognizant of the number of static streams and // sets the maximum to be max_streams + number_of_statics. This should // eventually be removed from IETF QUIC.
diff --git a/quic/core/uber_quic_stream_id_manager.h b/quic/core/uber_quic_stream_id_manager.h index 45b0d33..06edb68 100644 --- a/quic/core/uber_quic_stream_id_manager.h +++ b/quic/core/uber_quic_stream_id_manager.h
@@ -32,12 +32,6 @@ // as an open stream earlier, so no need to count it again. void RegisterStaticStream(QuicStreamId id, bool stream_already_counted); - // Sets the maximum outgoing stream count as a result of doing the transport - // configuration negotiation. Forces the limit to max_streams, regardless of - // static streams. - void ConfigureMaxOpenOutgoingBidirectionalStreams(size_t max_streams); - void ConfigureMaxOpenOutgoingUnidirectionalStreams(size_t max_streams); - // Sets the limits to max_open_streams + number of static streams // in existence. SetMaxOpenOutgoingStreams will QUIC_BUG if it is called // after getting the first MAX_STREAMS frame or the transport configuration