Chromium Code Reviews| Index: net/quic/spdy_utils.h |
| diff --git a/net/quic/spdy_utils.h b/net/quic/spdy_utils.h |
| index 708e0c3f2a9afa569a98b70786b05b17cecaab77..6c01fb8b16795db741e4e3e4dd2f95925b6ff5c3 100644 |
| --- a/net/quic/spdy_utils.h |
| +++ b/net/quic/spdy_utils.h |
| @@ -44,8 +44,15 @@ class NET_EXPORT_PRIVATE SpdyUtils { |
| size_t* final_byte_offset, |
| SpdyHeaderBlock* trailers); |
| + |
|
ramant (doing other things)
2016/04/21 21:00:27
overly nit: extra blank line (not sure if git cl f
Ryan Hamilton
2016/04/21 21:49:55
Not sure either, but it seems to be gone in the fi
|
| + // Copies a list of headers to a SpdyHeaderBlock. Performs similar validation |
| + // to SpdyFramer::ParseHeaderBlockInBuffer and ParseHeaders, above. |
| + static bool CopyAndValidateHeaders(const QuicHeaderList& header_list, |
| + int64_t* content_length, |
| + SpdyHeaderBlock* headers); |
| + |
| // Copies a list of headers to a SpdyHeaderBlock. Performs similar validation |
| - // to SpdyFramer::ParseHeaderBlockInBuffer. |
| + // to SpdyFramer::ParseHeaderBlockInBuffer and ParseTrailers, above. |
| static bool CopyAndValidateTrailers(const QuicHeaderList& header_list, |
| size_t* final_byte_offset, |
| SpdyHeaderBlock* trailers); |