| Index: net/quic/chromium/quic_connection_logger.cc
|
| diff --git a/net/quic/chromium/quic_connection_logger.cc b/net/quic/chromium/quic_connection_logger.cc
|
| index 7c31ad08c46a18dd594dcaeffa5baa586f055161..2bfd9eb0fd78bce6f9534bc08d9af02ec255d893 100644
|
| --- a/net/quic/chromium/quic_connection_logger.cc
|
| +++ b/net/quic/chromium/quic_connection_logger.cc
|
| @@ -687,7 +687,8 @@ void QuicConnectionLogger::OnRttChanged(QuicTime::Delta rtt) const {
|
| return;
|
|
|
| int64_t microseconds = rtt.ToMicroseconds();
|
| - if (microseconds != 0) {
|
| + if (microseconds != 0 &&
|
| + socket_performance_watcher_->ShouldNotifyUpdatedRTT()) {
|
| socket_performance_watcher_->OnUpdatedRTTAvailable(
|
| base::TimeDelta::FromMicroseconds(rtt.ToMicroseconds()));
|
| }
|
|
|