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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2411363002: Add timer to OffscreenCanvas's commit API (Closed)
Patch Set: add to histogram Created 4 years, 2 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 502f97d51c27ef34d5feda8a9f310394693dad50..ba842101d526d80b8e857d5efe119a4ba4fc961c 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3956,6 +3956,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Time spent on 2D canvas getImageData API call.</summary>
</histogram>
+<histogram name="Blink.Canvas.OffscreenCommit" units="microseconds">
Ilya Sherman 2016/10/12 22:19:09 nit: I'd suggest appending "Time" to the end of th
xidachen 2016/10/13 01:39:24 Done.
+ <owner>junov@chromium.org</owner>
+ <owner>xidachen@chromium.org</owner>
+ <summary>Time spent on OffscreenCanvas's commit before compositing.</summary>
Justin Novosad 2016/10/12 21:11:12 This is Unclear IMHO. I believe a more accurate de
xidachen 2016/10/13 01:39:24 Done.
+</histogram>
+
<histogram name="Blink.Canvas.PutImageData" units="microseconds">
<owner>junov@chromium.org</owner>
<summary>Time spent on 2D canvas putImageData API call.</summary>
@@ -103064,6 +103070,14 @@ value.
<affected-histogram name="Blink.Canvas.PutImageData"/>
</histogram_suffixes>
+<histogram_suffixes name="BlinkCanvasOffscreenCommitType" separator=".">
+ <suffix name="GPUCanvasGPUCompositing"/>
+ <suffix name="GPUCanvasSoftwareCompositing"/>
+ <suffix name="SoftwareCanvasGPUCompositing"/>
+ <suffix name="SoftwareCanvasSoftwareCompositing"/>
+ <affected-histogram name="Blink.Canvas.OffscreenCommit"/>
+</histogram_suffixes>
+
<histogram_suffixes name="BlinkCanvasToBlobIdleEncodAndDelayType" separator=".">
<suffix name="JPEG"/>
<suffix name="PNG"/>

Powered by Google App Engine
This is Rietveld 408576698