diff options
Diffstat (limited to 'net/socket/transport_client_socket_pool.h')
-rw-r--r-- | net/socket/transport_client_socket_pool.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/socket/transport_client_socket_pool.h b/net/socket/transport_client_socket_pool.h index 16e421a..95b51c3 100644 --- a/net/socket/transport_client_socket_pool.h +++ b/net/socket/transport_client_socket_pool.h @@ -125,6 +125,10 @@ class NET_EXPORT_PRIVATE TransportConnectJob : public ConnectJob { base::TimeTicks fallback_connect_start_time_; base::OneShotTimer<TransportConnectJob> fallback_timer_; + // If the interval between this connect and previous connect is less than + // 20ms, then |less_than_20ms_since_connect_| is set to true. + bool less_than_20ms_since_connect_; + DISALLOW_COPY_AND_ASSIGN(TransportConnectJob); }; |