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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2915863002: Photo Picker dialog: Add UMA statistics. (Closed)
Patch Set: Address feedback from Mark Created 3 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 | « tools/metrics/histograms/enums.xml ('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 283764be1bfafc909eb53e15c8daee43058f5cfd..c14015f5a4260229b43d136c19ab4936bc767ce2 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -943,6 +943,79 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Android.PhotoPicker.BitmapScalerTask" units="ms">
+ <owner>finnur@chromium.org</owner>
+ <owner>twellington@chromium.org</owner>
+ <summary>
+ Measures the amount of time the BitmapScaler spent scaling a bitmap.
+ </summary>
+</histogram>
+
+<histogram name="Android.PhotoPicker.CacheHits" units="Hits">
+ <owner>finnur@chromium.org</owner>
+ <owner>twellington@chromium.org</owner>
+ <summary>
+ Measures the total number of images served from the high-res cache during
+ the lifetime of the dialog.
+ </summary>
+</histogram>
+
+<histogram name="Android.PhotoPicker.DecodeRequests" units="Hits">
+ <owner>finnur@chromium.org</owner>
+ <owner>twellington@chromium.org</owner>
+ <summary>
+ Measures the total number of images sent for decoding during the lifetime of
+ the dialog.
+ </summary>
+</histogram>
+
+<histogram name="Android.PhotoPicker.DialogAction"
+ enum="PhotoPickerDialogAction">
+ <owner>finnur@chromium.org</owner>
+ <owner>twellington@chromium.org</owner>
+ <summary>
+ Records which action the user takes in the PhotoPickerDialog.
+ </summary>
+</histogram>
+
+<histogram name="Android.PhotoPicker.ImageByteCount" units="KB">
+ <owner>finnur@chromium.org</owner>
+ <owner>twellington@chromium.org</owner>
+ <summary>
+ Measures the byte count of a decoded image. Only recorded on successful
+ decodes.
+ </summary>
+</histogram>
+
+<histogram name="Android.PhotoPicker.ImageDecodeTime" units="ms">
+ <owner>finnur@chromium.org</owner>
+ <owner>twellington@chromium.org</owner>
+ <summary>
+ Measures the amount of time it takes the decoder to decode one image. Only
+ recorded on successful decodes.
+ </summary>
+</histogram>
+
+<histogram name="Android.PhotoPicker.RequestProcessTime" units="ms">
+ <owner>finnur@chromium.org</owner>
+ <owner>twellington@chromium.org</owner>
+ <summary>
+ Measures the amount of time it takes to process one decode request end to
+ end (RPC and actual decoding of the bits by utility process). Recorded
+ whether or not the RPC/decode request was successful.
+ </summary>
+</histogram>
+
+<histogram name="Android.PhotoPicker.UpscaleLowResBitmap" units="ms">
+ <owner>finnur@chromium.org</owner>
+ <owner>twellington@chromium.org</owner>
+ <summary>
+ Measures the amount of time it takes to upscale a bitmap from the low-res
+ cache. Recorded only when there a cache miss from the high-res bitmap but a
+ cache hit from the low-res (placeholder) bitmap.
+ </summary>
+</histogram>
+
<histogram name="Android.PrepareMenu.OpenWebApkVisibilityCheck" units="ms">
<owner>hanxi@chromium.org</owner>
<owner>pkotwicz@chromium.org</owner>
« no previous file with comments | « tools/metrics/histograms/enums.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698