| Index: tools/metrics/histograms/histograms.xml
|
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
|
| index d32b8698088ebacc79e192d006a1cf1ea9153cf8..f8e9a3870aced33e281ad5f263674b3353f7d644 100644
|
| --- a/tools/metrics/histograms/histograms.xml
|
| +++ b/tools/metrics/histograms/histograms.xml
|
| @@ -38248,6 +38248,50 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
|
| </summary>
|
| </histogram>
|
|
|
| +<histogram name="PageLoad.Experimental.PaintTiming.FirstMeaningfulPaintStatus"
|
| + enum="FirstMeaningfulPaintStatus">
|
| + <owner>ksakamoto@chromium.org</owner>
|
| + <summary>
|
| + Records whether the First Meaningful Paint metric was reported for the page
|
| + load, or why it wasn't if not. See http://bit.ly/ttfmp-doc for the
|
| + definition of First Meaningful Paint.
|
| + </summary>
|
| +</histogram>
|
| +
|
| +<histogram
|
| + name="PageLoad.Experimental.PaintTiming.FirstMeaningfulPaintToNetworkStable"
|
| + units="ms">
|
| + <owner>ksakamoto@chromium.org</owner>
|
| + <summary>
|
| + Measures the time between when the first meaningful paint
|
| + (http://bit.ly/ttfmp-doc) was computed to have happened, and when we
|
| + actually logged the metric.
|
| +
|
| + This metric is useful in helping us tweak when FirstMeaningfulPaintDetector
|
| + should stop observing layout operations.
|
| + </summary>
|
| +</histogram>
|
| +
|
| +<histogram
|
| + name="PageLoad.Experimental.PaintTiming.NavigationToFirstMeaningfulPaint"
|
| + units="ms">
|
| + <owner>ksakamoto@chromium.org</owner>
|
| + <summary>
|
| + Measures the time from navigation timing's navigation start to the first
|
| + meaningful paint (http://bit.ly/ttfmp-doc), for main frame documents.
|
| + </summary>
|
| +</histogram>
|
| +
|
| +<histogram
|
| + name="PageLoad.Experimental.PaintTiming.ParseStartToFirstMeaningfulPaint"
|
| + units="ms">
|
| + <owner>ksakamoto@chromium.org</owner>
|
| + <summary>
|
| + Measures the time from when the HTML parser started, to the first meaningful
|
| + paint (http://bit.ly/ttfmp-doc), for main frame documents.
|
| + </summary>
|
| +</histogram>
|
| +
|
| <histogram name="PageLoad.Experimental.ParseDuration.CachePercent.0-50"
|
| units="ms">
|
| <owner>csharrison@chromium.org</owner>
|
| @@ -79434,6 +79478,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
|
| <int value="20" label=".log"/>
|
| </enum>
|
|
|
| +<enum name="FirstMeaningfulPaintStatus" type="int">
|
| + <int value="0" label="Recorded successfully"/>
|
| + <int value="1" label="The page was backgrounded"/>
|
| + <int value="2" label="User left the page before network stable"/>
|
| + <int value="3" label="Not recorded because of user interaction"/>
|
| +</enum>
|
| +
|
| <enum name="FlashNavigateUsageType" type="int">
|
| <int value="0" label="Rejected because of Authorization header."/>
|
| <int value="1" label="Rejected because of Cache-Control header."/>
|
|
|