| Index: net/spdy/spdy_protocol.h
|
| diff --git a/net/spdy/spdy_protocol.h b/net/spdy/spdy_protocol.h
|
| index ff492e293e8a77e110363d7ac9fdda899debdf32..f787df128c8aab65d5e36b3174a410339f93e509 100644
|
| --- a/net/spdy/spdy_protocol.h
|
| +++ b/net/spdy/spdy_protocol.h
|
| @@ -532,12 +532,16 @@ class NET_EXPORT_PRIVATE SpdyConstants {
|
| // for this value as opposed to a constant.
|
| static size_t GetDataFrameMinimumSize(SpdyMajorVersion version);
|
|
|
| + // Number of octets in the frame header
|
| + static size_t GetFrameHeaderSize(SpdyMajorVersion version);
|
| +
|
| // Size, in bytes, of the control frame header.
|
| static size_t GetControlFrameHeaderSize(SpdyMajorVersion version);
|
|
|
| static size_t GetPrefixLength(SpdyFrameType type, SpdyMajorVersion version);
|
|
|
| - static size_t GetFrameMaximumSize(SpdyMajorVersion version);
|
| + // Maximum possible configurable size of a frame in octets.
|
| + static size_t GetMaxFrameSizeLimit(SpdyMajorVersion version);
|
|
|
| // Returns the size of a header block size field. Valid only for SPDY 3.
|
| static size_t GetSizeOfSizeField();
|
|
|