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.cc b/quic/core/qpack/qpack_send_stream.cc
index 250f9e4..34bba65 100644
--- a/quic/core/qpack/qpack_send_stream.cc
+++ b/quic/core/qpack/qpack_send_stream.cc
@@ -4,12 +4,12 @@
#include "net/third_party/quiche/src/quic/core/qpack/qpack_send_stream.h"
-#include "net/third_party/quiche/src/quic/core/http/quic_spdy_session.h"
+#include "net/third_party/quiche/src/quic/core/quic_session.h"
#include "net/third_party/quiche/src/quic/platform/api/quic_arraysize.h"
namespace quic {
QpackSendStream::QpackSendStream(QuicStreamId id,
- QuicSpdySession* session,
+ QuicSession* session,
uint64_t http3_stream_type)
: QuicStream(id, session, /*is_static = */ true, WRITE_UNIDIRECTIONAL),
http3_stream_type_(http3_stream_type),