Home | History | Annotate | Download | only in websocket_experiment

Lines Matching refs:Histogram

8 #include "base/metrics/histogram.h"
17 using base::Histogram;
95 // Holds Histogram objects during experiments run.
96 static base::hash_map<std::string, Histogram*>* g_histogram_table;
137 g_histogram_table = new base::hash_map<std::string, Histogram*>;
162 static Histogram* GetEnumsHistogramForConfig(
165 Histogram::Sample boundary_value) {
168 base::hash_map<std::string, Histogram*>::iterator found =
173 Histogram* counter = LinearHistogram::FactoryGet(
175 Histogram::kUmaTargetedHistogramFlag);
180 static Histogram* GetTimesHistogramForConfig(
188 base::hash_map<std::string, Histogram*>::iterator found =
193 Histogram* counter = Histogram::FactoryTimeGet(
195 Histogram::kUmaTargetedHistogramFlag);
203 Histogram::Sample sample,
204 Histogram::Sample boundary_value) {
205 Histogram* counter = GetEnumsHistogramForConfig(config, name, boundary_value);
216 Histogram* counter = GetTimesHistogramForConfig(