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

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

Issue 611523002: Histograms.xml: script streaming related update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | 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 10b2c103490a166f4d8661a89914401ea7683ee4..765ae848c589a6e15c94aaa4477d0caadefdc67f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -37254,13 +37254,16 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
-<histogram name="WebCore.Scripts.Deferred.TimeBetweenLoadedAndCompiled"
- units="milliseconds">
Ilya Sherman 2014/09/26 17:32:38 Please mark this histogram as <obsolete> rather th
marja 2014/09/26 20:42:21 This histogram never produced any data; do I still
Ilya Sherman 2014/09/26 20:59:22 Nope, feel free to delete it in that case. Thanks
+<histogram name="WebCore.Scripts.Async.StartedStreaming"
+ units="BooleanStreamed">
<owner>marja@chromium.org</owner>
- <summary>
- Time between the events &quot;script is loaded&quot; and &quot;script is
- compiled&quot; for deferred scripts.
- </summary>
+ <summary>Whether an async script was streamed or not.</summary>
+</histogram>
+
+<histogram name="WebCore.Scripts.Deferred.StartedStreaming"
+ units="BooleanStreamed">
+ <owner>marja@chromium.org</owner>
+ <summary>Whether a deferred script was streamed or not.</summary>
</histogram>
<histogram name="WebCore.Scripts.ParsingBlocking.AlreadyLoaded"
@@ -37272,6 +37275,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="WebCore.Scripts.ParsingBlocking.StartedStreaming"
+ units="BooleanStreamed">
+ <owner>marja@chromium.org</owner>
+ <summary>Whether a parsing blocking script was streamed or not.</summary>
+</histogram>
+
<histogram name="WebCore.Scripts.ParsingBlocking.TimeBetweenLoadedAndCompiled"
units="milliseconds">
<owner>marja@chromium.org</owner>
@@ -39015,6 +39024,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="1" label="Stale"/>
</enum>
+<enum name="BooleanStreamed" type="int">
+ <int value="0" label="Not streamed"/>
+ <int value="1" label="Streamed"/>
+</enum>
+
<enum name="BooleanSuccess" type="int">
<int value="0" label="Failure"/>
<int value="1" label="Success"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698