Commit aa2d0cba authored by marja's avatar marja Committed by Commit bot

Histograms.xml: script streaming related update.

R=isherman@chromium.org
BUG=

Review URL: https://codereview.chromium.org/611523002

Cr-Commit-Position: refs/heads/master@{#297152}
parent b885fc3b
...@@ -37435,13 +37435,16 @@ Therefore, the affected-histogram name has to have at least one dot in it. ...@@ -37435,13 +37435,16 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary> </summary>
</histogram> </histogram>
<histogram name="WebCore.Scripts.Deferred.TimeBetweenLoadedAndCompiled" <histogram name="WebCore.Scripts.Async.StartedStreaming"
units="milliseconds"> units="BooleanStreamed">
<owner>marja@chromium.org</owner> <owner>marja@chromium.org</owner>
<summary> <summary>Whether an async script was streamed or not.</summary>
Time between the events &quot;script is loaded&quot; and &quot;script is </histogram>
compiled&quot; for deferred scripts.
</summary> <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>
<histogram name="WebCore.Scripts.ParsingBlocking.AlreadyLoaded" <histogram name="WebCore.Scripts.ParsingBlocking.AlreadyLoaded"
...@@ -37453,6 +37456,12 @@ Therefore, the affected-histogram name has to have at least one dot in it. ...@@ -37453,6 +37456,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary> </summary>
</histogram> </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" <histogram name="WebCore.Scripts.ParsingBlocking.TimeBetweenLoadedAndCompiled"
units="milliseconds"> units="milliseconds">
<owner>marja@chromium.org</owner> <owner>marja@chromium.org</owner>
...@@ -39220,6 +39229,11 @@ Therefore, the affected-histogram name has to have at least one dot in it. ...@@ -39220,6 +39229,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="1" label="Stale"/> <int value="1" label="Stale"/>
</enum> </enum>
<enum name="BooleanStreamed" type="int">
<int value="0" label="Not streamed"/>
<int value="1" label="Streamed"/>
</enum>
<enum name="BooleanSuccess" type="int"> <enum name="BooleanSuccess" type="int">
<int value="0" label="Failure"/> <int value="0" label="Failure"/>
<int value="1" label="Success"/> <int value="1" label="Success"/>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment