Index: tools/metrics/histograms/histograms.xml |
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
index 4d36619ab5c661fca1ebe7526473152b376d5933..a0782b0df1f9012ef1b936245fa25b4fa4d7a4f7 100644 |
--- a/tools/metrics/histograms/histograms.xml |
+++ b/tools/metrics/histograms/histograms.xml |
@@ -42897,6 +42897,12 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
</summary> |
</histogram> |
+<histogram name="WebCore.Scripts.Async.NotStreamingReason" |
+ units="NotStreamingReason"> |
+ <owner>marja@chromium.org</owner> |
+ <summary>Reason for not streaming an async script.</summary> |
+</histogram> |
+ |
<histogram name="WebCore.Scripts.Async.StartedStreaming" |
units="BooleanStreamed"> |
<owner>marja@chromium.org</owner> |
@@ -42905,12 +42911,19 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
<histogram name="WebCore.Scripts.Deferred.StartedStreaming" |
units="BooleanStreamed"> |
+ <obsolete> |
+ Deprecated as deferred scripts are not streamed. |
+ </obsolete> |
<owner>marja@chromium.org</owner> |
<summary>Whether a deferred script was streamed or not.</summary> |
</histogram> |
<histogram name="WebCore.Scripts.ParsingBlocking.AlreadyLoaded" |
enum="BooleanLoaded"> |
+ <obsolete> |
+ Deprecated as this data was needed for streaming investigations, no longer |
+ needed. |
+ </obsolete> |
<owner>marja@chromium.org</owner> |
<summary> |
Whether a parsing blocking script was already preloaded from the net or the |
@@ -42920,12 +42933,19 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
<histogram name="WebCore.Scripts.ParsingBlocking.StartedStreaming" |
units="BooleanStreamed"> |
+ <obsolete> |
+ Deprecated as parsing blocking scripts are not streamed. |
+ </obsolete> |
<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"> |
+ <obsolete> |
+ Deprecated as this data was needed for streaming investigations, no longer |
+ needed. |
+ </obsolete> |
<owner>marja@chromium.org</owner> |
<summary> |
Time between the events "script is loaded" and "script is |
@@ -55257,6 +55277,17 @@ To add a new entry, add it with any value and run test to compute valid value. |
<int value="7" label="Notification closed by system"/> |
</enum> |
+<enum name="NotStreamingReason" type="int"> |
+ <int value="0" label="Already loaded"/> |
+ <int value="1" label="Not HTTP"/> |
+ <int value="2" label="Reload"/> |
+ <int value="3" label="Context not valid"/> |
+ <int value="4" label="Encoding not supported"/> |
+ <int value="5" label="Thread busy"/> |
+ <int value="6" label="V8 cannot stream"/> |
+ <int value="7" label="Script too small"/> |
+</enum> |
+ |
<enum name="NPAPIPluginStatus" type="int"> |
<int value="0" label="Unsupported"> |
NPAPI is not supported on this platform |