gfe-relnote: Use PushId instead of QuicStreamId argument type where appropriate. Protected by gfe2_reloadable_flag_quic_enable_version_draft_25_v3 and gfe2_reloadable_flag_quic_enable_version_draft_27.
PushId is an alias for uint64_t, while QuicStreamId is an alias for uint32_t,
so this might cause a slight behavior change with very large values, but the
affected methods are only used in IETF QUIC, for which push is disabled except
for some tests.
PiperOrigin-RevId: 305871011
Change-Id: If533d822ff5ae1f2af09c23bc6c109f7f59b4833
diff --git a/quic/core/http/quic_spdy_session_test.cc b/quic/core/http/quic_spdy_session_test.cc
index f7ceaec..307dabb 100644
--- a/quic/core/http/quic_spdy_session_test.cc
+++ b/quic/core/http/quic_spdy_session_test.cc
@@ -3023,7 +3023,7 @@
StrictMock<MockHttp3DebugVisitor> debug_visitor;
session_.set_debug_visitor(&debug_visitor);
- const QuicStreamId max_push_id = 5;
+ const PushId max_push_id = 5;
session_.SetMaxPushId(max_push_id);
InSequence s;