diff options
Diffstat (limited to 'net/http/http_network_transaction.cc')
-rw-r--r-- | net/http/http_network_transaction.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc index 0a88bb8..43df7ce 100644 --- a/net/http/http_network_transaction.cc +++ b/net/http/http_network_transaction.cc @@ -1020,10 +1020,10 @@ void HttpNetworkTransaction::LogTransactionConnectedMetrics() { } } - // Currently, non-zero priority requests are frame or sub-frame resource + // Currently, non-HIGHEST priority requests are frame or sub-frame resource // types. This will change when we also prioritize certain subresources like // css, js, etc. - if (request_->priority) { + if (request_->priority != HIGHEST) { UMA_HISTOGRAM_CUSTOM_TIMES( "Net.Priority_High_Latency_b", total_duration, |