Index: net/quic/core/quic_session.h |
diff --git a/net/quic/core/quic_session.h b/net/quic/core/quic_session.h |
index 5fa9dcd3abe0b47e8bb73bfa9f43f71e2b43c207..4f8e1efff0e722bd6d830f0dfe0a024f5145a157 100644 |
--- a/net/quic/core/quic_session.h |
+++ b/net/quic/core/quic_session.h |
@@ -292,11 +292,11 @@ class QUIC_EXPORT_PRIVATE QuicSession : public QuicConnectionVisitorInterface { |
// When a stream is closed locally, it may not yet know how many bytes the |
// peer sent on that stream. |
- // When this data arrives (via stream frame w. FIN, or RST) this method |
- // is called, and correctly updates the connection level flow controller. |
- void UpdateFlowControlOnFinalReceivedByteOffset( |
- QuicStreamId id, |
- QuicStreamOffset final_byte_offset); |
+ // When this data arrives (via stream frame w. FIN, trailing headers, or RST) |
+ // this method is called, and correctly updates the connection level flow |
+ // controller. |
+ void OnFinalByteOffsetReceived(QuicStreamId id, |
+ QuicStreamOffset final_byte_offset); |
// Return true if given stream is peer initiated. |
bool IsIncomingStream(QuicStreamId id) const; |