Modify push_promise related methods to prepare for H3 push promise.
WritePushPromise() now returns void as no caller uses the returned size.
OnPushPromiseFrameStart() now takes in the frame lengths so that the frame can be consumed properly.
gfe-relnote: no prod behavior change, not protected.
PiperOrigin-RevId: 259377914
Change-Id: Ic89cdd785acf216e7fa5715426bbac30bf9b6045
diff --git a/quic/core/http/http_decoder.h b/quic/core/http/http_decoder.h
index 16cc5d2..99c4d10 100644
--- a/quic/core/http/http_decoder.h
+++ b/quic/core/http/http_decoder.h
@@ -97,7 +97,8 @@
virtual bool OnHeadersFrameEnd() = 0;
// Called when a PUSH_PROMISE frame has been received for |push_id|.
- virtual bool OnPushPromiseFrameStart(PushId push_id) = 0;
+ virtual bool OnPushPromiseFrameStart(PushId push_id,
+ Http3FrameLengths frame_length) = 0;
// Called when part of the payload of a PUSH_PROMISE frame has been read.
// May be called multiple times for a single frame. |payload| is guaranteed
// to be non-empty.