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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1583263002: Experimental CompressibleString UMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add DecompressingInForegroundTab Created 4 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 a5730980efea7fd0734213de59c42119a4fce2f9..8de306bddcb0bda336f0477ad2d0cf90a76bf7fd 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -19839,6 +19839,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Memory.CompressibleStringCount"
+ enum="CompressibleStringCountType">
+ <owner>hajimehoshi@chromium.org</owner>
+ <summary>
+ The count of CompressibleString for JavaScript source stirngs in a
+ background tab. This checks how often V8 requires JavaScript source strings
+ and decopressing is required in the background tab.
+ </summary>
+</histogram>
+
<histogram name="Memory.DiscardableAllocationSize" units="KB">
<owner>reveman@chromium.org</owner>
<summary>
@@ -58512,6 +58522,12 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="1" label="GPU compositor"/>
</enum>
+<enum name="CompressibleStringCountType" type="int">
+ <int value="0" label="Compressed in a background tab"/>
+ <int value="1" label="Decompressed in a background tab"/>
+ <int value="2" label="Decompressed in a foreground tab"/>
+</enum>
+
<enum name="ComputeCurrentSigninStatus" type="int">
<int value="0" label="Tried to compute current signin status."/>
<int value="1" label="Error: No profiles found."/>

Powered by Google App Engine
This is Rietveld 408576698