Home | History | Annotate | Download | only in metrics

Lines Matching defs:StatsCounter

22 // a hash table lookup to find the counter in the table.  A StatsCounter
27 // StatsCounter request_count("RequestCount");
50 base::StatsCounter counter(name); \
77 // StatsCounter represents a counter in the StatsTable class.
78 class BASE_API StatsCounter {
80 // Create a StatsCounter object.
81 explicit StatsCounter(const std::string& name);
82 virtual ~StatsCounter();
116 StatsCounter();
129 // A StatsCounterTimer is a StatsCounter which keeps a timer during
132 class BASE_API StatsCounterTimer : protected StatsCounter {
170 StatsCounter counter_;
171 StatsCounter largest_add_;