| Index: net/quic/quic_data_reader.h
|
| diff --git a/net/quic/quic_data_reader.h b/net/quic/quic_data_reader.h
|
| index 1686de028cca4b754946900af5d85c1fccbe0936..3384e209801b23074d40966fcdf8b57e3d78d4fd 100644
|
| --- a/net/quic/quic_data_reader.h
|
| +++ b/net/quic/quic_data_reader.h
|
| @@ -44,21 +44,11 @@ class NET_EXPORT_PRIVATE QuicDataReader {
|
| // Returns true on success, false otherwise.
|
| bool ReadUInt32(uint32* result);
|
|
|
| - // Reads a 48-bit unsigned integer into the given output parameter.
|
| - // Forwards the internal iterator on success.
|
| - // Returns true on success, false otherwise.
|
| - bool ReadUInt48(uint64* result);
|
| -
|
| // Reads a 64-bit unsigned integer into the given output parameter.
|
| // Forwards the internal iterator on success.
|
| // Returns true on success, false otherwise.
|
| bool ReadUInt64(uint64* result);
|
|
|
| - // Reads a 128-bit unsigned integer into the given output parameter.
|
| - // Forwards the internal iterator on success.
|
| - // Returns true on success, false otherwise.
|
| - bool ReadUInt128(uint128* result);
|
| -
|
| // Reads a 16-bit unsigned float into the given output parameter.
|
| // Forwards the internal iterator on success.
|
| // Returns true on success, false otherwise.
|
|
|