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

Unified Diff: net/base/connection_type_histograms.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 | « net/base/connection_type_histograms.h ('k') | net/base/crypto_module.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/connection_type_histograms.cc
diff --git a/net/base/connection_type_histograms.cc b/net/base/connection_type_histograms.cc
deleted file mode 100644
index e64619c337ec454554e7de6f2aa5edb52d1c7f2d..0000000000000000000000000000000000000000
--- a/net/base/connection_type_histograms.cc
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "net/base/connection_type_histograms.h"
-
-#include "base/metrics/histogram.h"
-
-namespace net {
-
-// We're using a histogram as a group of counters. We're only interested in
-// the values of the counters. Ignore the shape, average, and standard
-// deviation of the histograms because they are meaningless.
-//
-// We use two groups of counters. In the first group (counter1), each counter
-// is a boolean (0 or 1) that indicates whether the user has seen a connection
-// of that type during that session. In the second group (counter2), each
-// counter is the number of connections of that type the user has seen during
-// that session.
-//
-// Each histogram has an unused bucket at the end to allow seamless future
-// expansion.
-void UpdateConnectionTypeHistograms(ConnectionType type) {
- // TODO(wtc): Bug 74467 Move these stats up to a higher level.
- static bool had_connection_type[NUM_OF_CONNECTION_TYPES]; // Default false.
-
- if (type >= 0 && type < NUM_OF_CONNECTION_TYPES) {
- if (!had_connection_type[type]) {
- had_connection_type[type] = true;
- UMA_HISTOGRAM_ENUMERATION("Net.HadConnectionType3",
- type, NUM_OF_CONNECTION_TYPES);
- }
-
- UMA_HISTOGRAM_ENUMERATION("Net.ConnectionTypeCount3",
- type, NUM_OF_CONNECTION_TYPES);
- } else {
- NOTREACHED(); // Someone's logging an invalid type!
- }
-}
-
-} // namespace net
« no previous file with comments | « net/base/connection_type_histograms.h ('k') | net/base/crypto_module.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698