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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 2046933003: WebAudio: record whether user gesture was available and provided. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: Created 4 years, 6 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:
Download patch
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index f7d6843234d178d3d4da230c36229a088b6593f7..e3a498e0746911259ddeea1686aef382706c6149 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -59645,6 +59645,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="WebAudio.UserGesture" enum="UserGestureRequirement">
+ <owner>mlamouri@chromium.org</owner>
+ <summary>
+ Records whether WebAudio had a user gesture requirement and whether it was
+ fulfilled.
+ </summary>
+</histogram>
+
<histogram name="WebController.CertVerificationErrorsCacheHit"
enum="BooleanCacheHit">
<owner>eugenebut@chromium.org</owner>
@@ -89360,6 +89368,13 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="3" label="Stable"/>
</enum>
+<enum name="UserGestureRequirement" type="int">
+ <int value="0" label="Required and available"/>
+ <int value="1" label="Required and not available"/>
+ <int value="2" label="Not required and available"/>
+ <int value="3" label="Not required and not available"/>
+</enum>
+
<enum name="UserInitiatedEvent" type="int">
<int value="0" label="WiFi Scan"/>
</enum>
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698