Index: net/nqe/network_quality_estimator.cc |
diff --git a/net/nqe/network_quality_estimator.cc b/net/nqe/network_quality_estimator.cc |
index 359b437ebfcf8521d6b2b9f947834418337650eb..607b5db42d82b9e343b270fbf9f487c65f0f1917 100644 |
--- a/net/nqe/network_quality_estimator.cc |
+++ b/net/nqe/network_quality_estimator.cc |
@@ -537,6 +537,16 @@ void NetworkQualityEstimator::ObtainEffectiveConnectionTypeModelParams( |
base::TimeDelta::FromMilliseconds(1280), |
nqe::internal::kInvalidThroughput); |
+ default_effective_connection_type_thresholds_[EFFECTIVE_CONNECTION_TYPE_3G] = |
+ nqe::internal::NetworkQuality( |
+ // Set to 273 milliseconds, which corresponds to 50th percentile of |
+ // 3G HTTP RTT observations on Android. |
+ base::TimeDelta::FromMilliseconds(273), |
+ // Set to 204 milliseconds, which corresponds to 50th percentile of |
+ // 3G transport RTT observations on Android. |
+ base::TimeDelta::FromMilliseconds(204), |
+ nqe::internal::kInvalidThroughput); |
+ |
for (size_t i = 0; i < EFFECTIVE_CONNECTION_TYPE_LAST; ++i) { |
EffectiveConnectionType effective_connection_type = |
static_cast<EffectiveConnectionType>(i); |