Clean up build dependency for Qpack streams.
They don't really rely on QuicSpdySession.
gfe-relnote: build change only. Not protected.
PiperOrigin-RevId: 259368481
Change-Id: I31109e55974bc6e556dd0996c45b79b8a43ab2ff
diff --git a/quic/core/qpack/qpack_send_stream.h b/quic/core/qpack/qpack_send_stream.h
index 526cf6d..136a7cc 100644
--- a/quic/core/qpack/qpack_send_stream.h
+++ b/quic/core/qpack/qpack_send_stream.h
@@ -14,7 +14,7 @@
namespace quic {
-class QuicSpdySession;
+class QuicSession;
// QPACK 4.2.1 Encoder and Decoder Streams.
// The QPACK send stream is self initiated and is write only.
@@ -24,7 +24,7 @@
// |session| can't be nullptr, and the ownership is not passed. |session| owns
// this stream.
QpackSendStream(QuicStreamId id,
- QuicSpdySession* session,
+ QuicSession* session,
uint64_t http3_stream_type);
QpackSendStream(const QpackSendStream&) = delete;
QpackSendStream& operator=(const QpackSendStream&) = delete;