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

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

Issue 1583263002: Experimental CompressibleString UMA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adopt lazy-initializing way 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
« no previous file with comments | « third_party/WebKit/Source/wtf/WTFThreadData.cpp ('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 3c3257bf31d41e8f20cdb3b7555e1d4237075e07..cb839ddfa1dfc80f5a6c9bd40435aa8cf83df69b 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -19979,6 +19979,19 @@ 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>
+ This records the frequency with which JavaScript source strings are
+ compressed and decompressed in foreground and background tabs. Compressing
+ runs 10 seconds after the tab goes background and decompressing runs when
+ JavaScript source string is required (e.g. V8 starts to compile). This
+ measurement is a preparation to introduce CompressibleString class for
+ JavaScript source strings to reduce Blink memory usage.
+ </summary>
+</histogram>
+
<histogram name="Memory.DiscardableAllocationSize" units="KB">
<owner>reveman@chromium.org</owner>
<summary>
@@ -58923,6 +58936,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."/>
« no previous file with comments | « third_party/WebKit/Source/wtf/WTFThreadData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698