| Index: net/quic/quic_client_session.cc
|
| diff --git a/net/quic/quic_client_session.cc b/net/quic/quic_client_session.cc
|
| index ec87d779d5f946118987b9271663e0733d5fbff9..ca6941c7e1b71c7bf0841e6c3a0ac1982e632769 100644
|
| --- a/net/quic/quic_client_session.cc
|
| +++ b/net/quic/quic_client_session.cc
|
| @@ -314,6 +314,12 @@ void QuicClientSession::ConnectionClose(QuicErrorCode error, bool from_peer) {
|
| NotifyFactoryOfSessionCloseLater();
|
| }
|
|
|
| +void QuicClientSession::OnSuccessfulVersionNegotiation(
|
| + const QuicVersion& version) {
|
| + logger_.OnSuccessfulVersionNegotiation(version);
|
| + QuicSession::OnSuccessfulVersionNegotiation(version);
|
| +}
|
| +
|
| void QuicClientSession::StartReading() {
|
| if (read_pending_) {
|
| return;
|
|
|