Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Unified Diff: net/http/http_network_transaction.cc

Issue 13993007: Remove the remnants of the WarmSocketImpact field trial. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/url_request/url_request_http_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_transaction.cc
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc
index 467eb940a65d7a6687b7085b3e9257f615036ab5..15cc6f5ebf485a5db01c30715518163f9023120d 100644
--- a/net/http/http_network_transaction.cc
+++ b/net/http/http_network_transaction.cc
@@ -1117,24 +1117,6 @@ void HttpNetworkTransaction::LogTransactionMetrics() const {
base::TimeDelta::FromMilliseconds(1),
base::TimeDelta::FromMinutes(10), 100);
- static const bool use_warm_socket_impact_histogram =
- base::FieldTrialList::TrialExists("WarmSocketImpact");
- if (use_warm_socket_impact_histogram) {
- UMA_HISTOGRAM_CUSTOM_TIMES(
- base::FieldTrial::MakeName("Net.Transaction_Latency_b",
- "WarmSocketImpact"),
- duration,
- base::TimeDelta::FromMilliseconds(1),
- base::TimeDelta::FromMinutes(10),
- 100);
- UMA_HISTOGRAM_CUSTOM_TIMES(
- base::FieldTrial::MakeName("Net.Transaction_Latency_Total",
- "WarmSocketImpact"),
- total_duration,
- base::TimeDelta::FromMilliseconds(1),
- base::TimeDelta::FromMinutes(10), 100);
- }
-
if (!stream_->IsConnectionReused()) {
UMA_HISTOGRAM_CUSTOM_TIMES(
"Net.Transaction_Latency_Total_New_Connection",
« no previous file with comments | « no previous file | net/url_request/url_request_http_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698