| Index: net/nqe/network_quality_estimator.cc
|
| diff --git a/net/nqe/network_quality_estimator.cc b/net/nqe/network_quality_estimator.cc
|
| index cc8428189ec18610cc17bb7174a02a74054882c3..abe4e1e54f406bbed6fa578820998ba59ac50a11 100644
|
| --- a/net/nqe/network_quality_estimator.cc
|
| +++ b/net/nqe/network_quality_estimator.cc
|
| @@ -191,11 +191,12 @@ void RecordEffectiveConnectionTypeAccuracy(
|
| int32_t metric,
|
| base::TimeDelta measuring_duration,
|
| EffectiveConnectionType observed_effective_connection_type) {
|
| - const std::string histogram_name = base::StringPrintf(
|
| - "%s.EstimatedObservedDiff.%s.%d.%s", prefix,
|
| - metric >= 0 ? "Positive" : "Negative",
|
| - static_cast<int32_t>(measuring_duration.InSeconds()),
|
| - GetNameForEffectiveConnectionType(observed_effective_connection_type));
|
| + const std::string histogram_name =
|
| + base::StringPrintf("%s.EstimatedObservedDiff.%s.%d.%s", prefix,
|
| + metric >= 0 ? "Positive" : "Negative",
|
| + static_cast<int32_t>(measuring_duration.InSeconds()),
|
| + DeprecatedGetNameForEffectiveConnectionType(
|
| + observed_effective_connection_type));
|
|
|
| base::HistogramBase* histogram = base::Histogram::FactoryGet(
|
| histogram_name, 0, EFFECTIVE_CONNECTION_TYPE_LAST,
|
|
|