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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1022383003: Add streaming-related histograms, mark old ones as obsolete. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 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 &quot;script is loaded&quot; and &quot;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
« 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