summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/core/qpack/qpack_blocking_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/third_party/quiche/src/quic/core/qpack/qpack_blocking_manager.h')
-rw-r--r--chromium/net/third_party/quiche/src/quic/core/qpack/qpack_blocking_manager.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/chromium/net/third_party/quiche/src/quic/core/qpack/qpack_blocking_manager.h b/chromium/net/third_party/quiche/src/quic/core/qpack/qpack_blocking_manager.h
index 60f7db7060a..6d2df9cfcf8 100644
--- a/chromium/net/third_party/quiche/src/quic/core/qpack/qpack_blocking_manager.h
+++ b/chromium/net/third_party/quiche/src/quic/core/qpack/qpack_blocking_manager.h
@@ -48,12 +48,6 @@ class QUIC_EXPORT_PRIVATE QpackBlockingManager {
// entries with |indices|. |indices| must not be empty.
void OnHeaderBlockSent(QuicStreamId stream_id, IndexSet indices);
- // Called when sending Insert With Name Reference or Duplicate instruction on
- // encoder stream, inserting entry |inserted_index| referring to
- // |referred_index|.
- void OnReferenceSentOnEncoderStream(uint64_t inserted_index,
- uint64_t referred_index);
-
// Returns true if sending blocking references on stream |stream_id| would not
// increase the total number of blocked streams above
// |maximum_blocked_streams|. Note that if |stream_id| is already blocked
@@ -85,11 +79,6 @@ class QUIC_EXPORT_PRIVATE QpackBlockingManager {
using HeaderBlocksForStream = std::list<IndexSet>;
using HeaderBlocks = QuicUnorderedMap<QuicStreamId, HeaderBlocksForStream>;
- // Increases |known_received_count_| to |new_known_received_count|, which must
- // me larger than |known_received_count_|. Removes acknowledged references
- // from |unacked_encoder_stream_references_|.
- void IncreaseKnownReceivedCountTo(uint64_t new_known_received_count);
-
// Increase or decrease the reference count for each index in |indices|.
void IncreaseReferenceCounts(const IndexSet& indices);
void DecreaseReferenceCounts(const IndexSet& indices);
@@ -98,13 +87,7 @@ class QUIC_EXPORT_PRIVATE QpackBlockingManager {
// Must not contain a stream id with an empty queue.
HeaderBlocks header_blocks_;
- // Unacknowledged references on the encoder stream.
- // The key is the absolute index of the inserted entry,
- // the mapped value is the absolute index of the entry referred.
- std::map<uint64_t, uint64_t> unacked_encoder_stream_references_;
-
- // Number of references in |header_blocks_| and
- // |unacked_encoder_stream_references_| for each entry index.
+ // Number of references in |header_blocks_| for each entry index.
std::map<uint64_t, uint64_t> entry_reference_counts_;
uint64_t known_received_count_;