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

Unified Diff: webrtc/system_wrappers/include/metrics.h

Issue 2986893002: Piggybacking simulcast id and ALR experiment id into video content type extension. (Closed)
Patch Set: Add metrics sliced on AlrExperiment group Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/system_wrappers/include/metrics.h
diff --git a/webrtc/system_wrappers/include/metrics.h b/webrtc/system_wrappers/include/metrics.h
index f22cf8f1665e3c27c86ba825ffb8d7d6840ded12..ee4506b5aa47fef517a51dd5f6887bab32643da0 100644
--- a/webrtc/system_wrappers/include/metrics.h
+++ b/webrtc/system_wrappers/include/metrics.h
@@ -188,23 +188,37 @@
RTC_HISTOGRAM_PERCENTAGE(name, sample))
#define RTC_HISTOGRAMS_COMMON(index, name, sample, macro_invocation) \
- do { \
- switch (index) { \
- case 0: \
- macro_invocation; \
- break; \
- case 1: \
- macro_invocation; \
- break; \
- case 2: \
- macro_invocation; \
- break; \
- default: \
- RTC_NOTREACHED(); \
- } \
+ do { \
+ switch (index) { \
+ case 0: \
+ macro_invocation; \
+ break; \
+ case 1: \
+ macro_invocation; \
+ break; \
+ case 2: \
+ macro_invocation; \
+ break; \
+ case 3: \
+ macro_invocation; \
+ break; \
+ case 4: \
+ macro_invocation; \
+ break; \
+ case 5: \
+ macro_invocation; \
+ break; \
+ case 6: \
+ macro_invocation; \
+ break; \
+ case 7: \
+ macro_invocation; \
+ break; \
+ default: \
+ RTC_NOTREACHED(); \
+ } \
} while (0)
-
namespace webrtc {
namespace metrics {

Powered by Google App Engine
This is Rietveld 408576698