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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 800183005: Adding UMA stats for dragdrop events for both touch and mouse. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adressing nit re: unnecessary else statement Created 5 years, 11 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 | « ash/drag_drop/drag_drop_controller.cc ('k') | ui/base/dragdrop/drag_drop_types.h » ('j') | 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 f879a89c876967194b6b5b4b2422d07978306e67..86038f91d7065af9879f9774648e655c480c269f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -6820,6 +6820,35 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Event.DragDrop.Cancel" enum="DragDropEventSource">
+ <owner>mfomitchev@chromium.org</owner>
+ <summary>
+ Counts the number of times the user cancelled a drag and drop operation.
+ </summary>
+</histogram>
+
+<histogram name="Event.DragDrop.Drop" enum="DragDropEventSource">
+ <owner>mfomitchev@chromium.org</owner>
+ <summary>
+ Counts the number of times the user completed a drag and drop operation.
+ </summary>
+</histogram>
+
+<histogram name="Event.DragDrop.ExternalOriginDrop">
+ <owner>mfomitchev@chromium.org</owner>
+ <summary>
+ Counts the number of times a drag and drop operation originating outside of
+ a Chrome window successfuly drops.
+ </summary>
+</histogram>
+
+<histogram name="Event.DragDrop.Start" enum="DragDropEventSource">
+ <owner>mfomitchev@chromium.org</owner>
+ <summary>
+ Counts the number of times the user started a drag and drop operation.
+ </summary>
+</histogram>
+
<histogram name="Event.Frequency.Renderer.FlingAnimate" units="hertz">
<owner>rbyers@chromium.org</owner>
<summary>
@@ -44646,6 +44675,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="4" label="Initiated by Resumption"/>
</enum>
+<enum name="DragDropEventSource" type="int">
+ <int value="0" label="Mouse"/>
+ <int value="1" label="Touch"/>
+</enum>
+
<enum name="DriveCacheDBOpenStatus" type="int">
<int value="0" label="Success"/>
<int value="1" label="Corrupt database"/>
« no previous file with comments | « ash/drag_drop/drag_drop_controller.cc ('k') | ui/base/dragdrop/drag_drop_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698