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

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: Adding UMA stats to track usage of DragAndDrop, on Chromeos, X11 and Windows. 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 793584f2063d4ee4389a655d5845a8219fae44b6..d23ed35f61ae21294b410e60ddfd5a39908392be 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -6064,6 +6064,52 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>The write size for calls to BaseFile::AppendDataTofile().</summary>
</histogram>
+<histogram name="DragDrop.Mouse.Cancel">
+ <owner>rbyers@chromium.org</owner>
mfomitchev 2015/01/08 23:30:59 You can put me as the owner for these
caelyn 2015/01/12 22:43:10 Done.
+ <summary>
+ Counts the number of times the user cancelled a drag and drop mouse
+ operation.
+ </summary>
+</histogram>
+
+<histogram name="DragDrop.Mouse.Drop">
+ <owner>rbyers@chromium.org</owner>
+ <summary>
+ Counts the number of times the user completed a drag and drop mouse
+ operation.
+ </summary>
+</histogram>
+
+<histogram name="DragDrop.Mouse.Start">
+ <owner>rbyers@chromium.org</owner>
+ <summary>
+ Counts the number of times the user started a drag and drop mouse operation.
+ </summary>
+</histogram>
+
+<histogram name="DragDrop.Touch.Cancel">
+ <owner>rbyers@chromium.org</owner>
+ <summary>
+ Counts the number of times the user cancelled a drag and drop touch
+ operation.
+ </summary>
+</histogram>
+
+<histogram name="DragDrop.Touch.Drop">
+ <owner>rbyers@chromium.org</owner>
+ <summary>
+ Counts the number of times the user completed a drag and drop touch
+ operation.
+ </summary>
+</histogram>
+
+<histogram name="DragDrop.Touch.Start">
+ <owner>rbyers@chromium.org</owner>
+ <summary>
+ Counts the number of times the user started a drag and drop touch operation.
+ </summary>
+</histogram>
+
<histogram name="Drive.CacheDBOpenStatus" enum="DriveCacheDBOpenStatus">
<obsolete>
Deprecated 8/2013.

Powered by Google App Engine
This is Rietveld 408576698