Index: net/quic/quic_crypto_stream.cc |
diff --git a/net/quic/quic_crypto_stream.cc b/net/quic/quic_crypto_stream.cc |
index df6c610813ba1a43ac2e68e0a4ef882ea184f9cc..70bf4d3754e14ed885bd27804608238c47bba2e5 100644 |
--- a/net/quic/quic_crypto_stream.cc |
+++ b/net/quic/quic_crypto_stream.cc |
@@ -57,4 +57,14 @@ void QuicCryptoStream::SendHandshakeMessage( |
WriteData(string(data.data(), data.length()), false); |
} |
+const QuicNegotiatedParameters& |
+QuicCryptoStream::negotiated_params() const { |
+ return negotiated_params_; |
+} |
+ |
+const QuicCryptoNegotiatedParameters& |
+QuicCryptoStream::crypto_negotiated_params() const { |
+ return crypto_negotiated_params_; |
+} |
+ |
} // namespace net |