| Index: net/quic/core/quic_config.cc
|
| diff --git a/net/quic/core/quic_config.cc b/net/quic/core/quic_config.cc
|
| index 3697a97d77cfdfc5860406aebd5aba6a240eed7c..e2661bd380897d0052461f19d2df66ed461b85c7 100644
|
| --- a/net/quic/core/quic_config.cc
|
| +++ b/net/quic/core/quic_config.cc
|
| @@ -77,6 +77,11 @@ uint32_t QuicNegotiableUint32::GetUint32() const {
|
| return default_value_;
|
| }
|
|
|
| +// Returns the maximum value negotiable.
|
| +uint32_t QuicNegotiableUint32::GetMax() const {
|
| + return max_value_;
|
| +}
|
| +
|
| void QuicNegotiableUint32::ToHandshakeMessage(
|
| CryptoHandshakeMessage* out) const {
|
| if (negotiated()) {
|
|
|