| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // This file contains macros to simplify histogram reporting from the disk | 5 // This file contains macros to simplify histogram reporting from the disk |
| 6 // cache. The main issue is that we want to have separate histograms for each | 6 // cache. The main issue is that we want to have separate histograms for each |
| 7 // type of cache (regular vs. media, etc), without adding the complexity of | 7 // type of cache (regular vs. media, etc), without adding the complexity of |
| 8 // keeping track of a potentially large number of histogram objects that have to | 8 // keeping track of a potentially large number of histogram objects that have to |
| 9 // survive the backend object that created them. | 9 // survive the backend object that created them. |
| 10 | 10 |
| 11 #ifndef NET_DISK_CACHE_V3_HISTOGRAM_MACROS_H_ | 11 #ifndef NET_DISK_CACHE_BLOCKFILE_HISTOGRAM_MACROS_V3_H_ |
| 12 #define NET_DISK_CACHE_V3_HISTOGRAM_MACROS_H_ | 12 #define NET_DISK_CACHE_BLOCKFILE_HISTOGRAM_MACROS_V3_H_ |
| 13 | 13 |
| 14 // ----------------------------------------------------------------------------- | 14 // ----------------------------------------------------------------------------- |
| 15 | 15 |
| 16 // These histograms follow the definition of UMA_HISTOGRAMN_XXX except that | 16 // These histograms follow the definition of UMA_HISTOGRAMN_XXX except that |
| 17 // whenever the name changes (the experiment group changes), the histrogram | 17 // whenever the name changes (the experiment group changes), the histrogram |
| 18 // object is re-created. | 18 // object is re-created. |
| 19 // Note: These macros are only run on one thread, so the declarations of | 19 // Note: These macros are only run on one thread, so the declarations of |
| 20 // |counter| was made static (i.e., there will be no race for reinitialization). | 20 // |counter| was made static (i.e., there will be no race for reinitialization). |
| 21 | 21 |
| 22 #define CACHE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \ | 22 #define CACHE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \ |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 CACHE_HISTOGRAM_##type(my_name.data(), sample);\ | 110 CACHE_HISTOGRAM_##type(my_name.data(), sample);\ |
| 111 break;\ | 111 break;\ |
| 112 case net::PNACL_CACHE:\ | 112 case net::PNACL_CACHE:\ |
| 113 CACHE_HISTOGRAM_##type(my_name.data(), sample);\ | 113 CACHE_HISTOGRAM_##type(my_name.data(), sample);\ |
| 114 break;\ | 114 break;\ |
| 115 default:\ | 115 default:\ |
| 116 break;\ | 116 break;\ |
| 117 }\ | 117 }\ |
| 118 } | 118 } |
| 119 | 119 |
| 120 #endif // NET_DISK_CACHE_V3_HISTOGRAM_MACROS_H_ | 120 #endif // NET_DISK_CACHE_BLOCKFILE_HISTOGRAM_MACROS_V3_H_ |
| OLD | NEW |