OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/base/connection_type_histograms.h" | 5 #include "net/base/connection_type_histograms.h" |
6 | 6 |
7 #include "base/histogram.h" | 7 #include "base/histogram.h" |
8 | 8 |
9 namespace net { | 9 namespace net { |
10 | 10 |
11 // We're using a histogram as a group of counters. We're only interested in | 11 // We're using a histogram as a group of counters. We're only interested in |
12 // the values of the counters. Ignore the shape, average, and standard | 12 // the values of the counters. Ignore the shape, average, and standard |
13 // deviation of the histograms because they are meaningless. | 13 // deviation of the histograms because they are meaningless. |
14 // | 14 // |
15 // We use two groups of counters. In the first group (counter1), each counter | 15 // We use two groups of counters. In the first group (counter1), each counter |
16 // is a boolean (0 or 1) that indicates whether the user has seen a connection | 16 // is a boolean (0 or 1) that indicates whether the user has seen a connection |
17 // of that type during that session. In the second group (counter2), each | 17 // of that type during that session. In the second group (counter2), each |
18 // counter is the number of connections of that type the user has seen during | 18 // counter is the number of connections of that type the user has seen during |
19 // that session. | 19 // that session. |
20 // | 20 // |
21 // Each histogram has an unused bucket at the end to allow seamless future | 21 // Each histogram has an unused bucket at the end to allow seamless future |
22 // expansion. | 22 // expansion. |
23 void UpdateConnectionTypeHistograms(ConnectionType type) { | 23 void UpdateConnectionTypeHistograms(ConnectionType type) { |
24 static bool had_connection_type[NUM_OF_CONNECTION_TYPES]; | 24 static bool had_connection_type[NUM_OF_CONNECTION_TYPES]; |
25 static LinearHistogram counter1("Net.HadConnectionType", | 25 static scoped_refptr<Histogram> counter1 = |
26 1, NUM_OF_CONNECTION_TYPES, | 26 LinearHistogram::LinearHistogramFactoryGet("Net.HadConnectionType", |
27 NUM_OF_CONNECTION_TYPES + 1); | 27 1, NUM_OF_CONNECTION_TYPES, |
28 static LinearHistogram counter2("Net.ConnectionTypeCount", | 28 NUM_OF_CONNECTION_TYPES + 1); |
29 1, NUM_OF_CONNECTION_TYPES, | 29 static scoped_refptr<Histogram> counter2 = |
30 NUM_OF_CONNECTION_TYPES + 1); | 30 LinearHistogram::LinearHistogramFactoryGet("Net.ConnectionTypeCount", |
| 31 1, NUM_OF_CONNECTION_TYPES, |
| 32 NUM_OF_CONNECTION_TYPES + 1); |
31 | 33 |
32 if (type >= 0 && type < NUM_OF_CONNECTION_TYPES) { | 34 if (type >= 0 && type < NUM_OF_CONNECTION_TYPES) { |
33 if (!had_connection_type[type]) { | 35 if (!had_connection_type[type]) { |
34 had_connection_type[type] = true; | 36 had_connection_type[type] = true; |
35 counter1.SetFlags(kUmaTargetedHistogramFlag); | 37 counter1->SetFlags(kUmaTargetedHistogramFlag); |
36 counter1.Add(type); | 38 counter1->Add(type); |
37 } | 39 } |
38 } | 40 } |
39 counter2.SetFlags(kUmaTargetedHistogramFlag); | 41 counter2->SetFlags(kUmaTargetedHistogramFlag); |
40 counter2.Add(type); | 42 counter2->Add(type); |
41 } | 43 } |
42 | 44 |
43 } // namespace net | 45 } // namespace net |
OLD | NEW |