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

Side by Side Diff: chromecast/base/metrics/cast_histograms.h

Issue 652353003: Chromecast: adds class to help record complex histograms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resets initial buffering state on flush Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « chromecast/base/DEPS ('k') | chromecast/base/metrics/cast_metrics_helper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROMECAST_BASE_METRICS_CAST_HISTOGRAMS_H_
6 #define CHROMECAST_BASE_METRICS_CAST_HISTOGRAMS_H_
7
8 #include "base/metrics/histogram.h"
9
10 // STATIC_HISTOGRAM_POINTER_BLOCK only calls histogram_factory_get_invocation
11 // at the first time and uses the cached histogram_pointer for subsequent calls
12 // through base::subtle::Release_Store() and base::subtle::Acquire_Load().
13 // If the histogram name changes between subsequent calls, use this non-cached
14 // version that always calls histogram_factory_get_invocation.
15 #define STATIC_HISTOGRAM_POINTER_BLOCK_NO_CACHE( \
16 constant_histogram_name, \
17 histogram_add_method_invocation, \
18 histogram_factory_get_invocation) \
19 do { \
20 base::HistogramBase* histogram_pointer = histogram_factory_get_invocation; \
21 if (DCHECK_IS_ON) \
22 histogram_pointer->CheckName(constant_histogram_name); \
23 histogram_pointer->histogram_add_method_invocation; \
24 } while (0)
25
26 #define UMA_HISTOGRAM_CUSTOM_TIMES_NO_CACHE( \
27 name, sample, min, max, bucket_count) \
28 STATIC_HISTOGRAM_POINTER_BLOCK_NO_CACHE(name, AddTime(sample), \
29 base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
30 base::Histogram::kUmaTargetedHistogramFlag))
31
32 #define UMA_HISTOGRAM_CUSTOM_COUNTS_NO_CACHE(name, sample, min, max, \
33 bucket_count) \
34 STATIC_HISTOGRAM_POINTER_BLOCK_NO_CACHE(name, Add(sample), \
35 base::Histogram::FactoryGet(name, min, max, bucket_count, \
36 base::HistogramBase::kUmaTargetedHistogramFlag))
37
38 #define UMA_HISTOGRAM_ENUMERATION_NO_CACHE(name, sample, boundary_value) \
39 STATIC_HISTOGRAM_POINTER_BLOCK_NO_CACHE(name, Add(sample), \
40 base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
41 boundary_value + 1, base::Histogram::kUmaTargetedHistogramFlag))
42
43 #define UMA_HISTOGRAM_ENUMERATION_COUNT_NO_CACHE(name, sample, count, \
44 boundary_value) \
45 STATIC_HISTOGRAM_POINTER_BLOCK_NO_CACHE(name, AddCount(sample, count), \
46 base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
47 boundary_value + 1, base::HistogramBase::kUmaTargetedHistogramFlag))
48
49 #endif // CHROMECAST_BASE_METRICS_CAST_HISTOGRAMS_H_
OLDNEW
« no previous file with comments | « chromecast/base/DEPS ('k') | chromecast/base/metrics/cast_metrics_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698