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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1357403003: Separate page load metrics for backgrounded pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DCHECK nit Created 5 years, 2 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 | « components/page_load_metrics/renderer/metrics_render_frame_observer.cc ('k') | 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 601cee84d75b23938d0d865e3d9ce336c33ce0f6..78dd020b5c9a2e5744b01d8d5f096b3284dcb997 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -29710,6 +29710,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<histogram name="PageLoad.Timing.NavigationToDOMContentLoadedEventFired"
units="milliseconds">
<owner>bmcquade@chromium.org</owner>
+ <owner>csharrison@chromium.org</owner>
+ <obsolete>
+ deprecated in favor of PageLoad.Timing2.*
+ </obsolete>
<summary>
Measures the time from navigation timing's navigation start to the time the
DOMContentLoaded event is fired, for main frame documents.
@@ -29718,6 +29722,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<histogram name="PageLoad.Timing.NavigationToFirstLayout" units="milliseconds">
<owner>bmcquade@chromium.org</owner>
+ <owner>csharrison@chromium.org</owner>
+ <obsolete>
+ deprecated in favor of PageLoad.Timing2.*
+ </obsolete>
<summary>
Measures the time from navigation timing's navigation start to the time the
first layout is performed, for main frame documents.
@@ -29727,6 +29735,39 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<histogram name="PageLoad.Timing.NavigationToLoadEventFired"
units="milliseconds">
<owner>bmcquade@chromium.org</owner>
+ <owner>csharrison@chromium.org</owner>
+ <obsolete>
+ deprecated in favor of PageLoad.Timing2.*
+ </obsolete>
+ <summary>
+ Measures the time from navigation timing's navigation start to the time the
+ load event is fired, for main frame documents.
+ </summary>
+</histogram>
+
+<histogram name="PageLoad.Timing2.NavigationToDOMContentLoadedEventFired"
+ units="milliseconds">
+ <owner>bmcquade@chromium.org</owner>
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ Measures the time from navigation timing's navigation start to the time the
+ DOMContentLoaded event is fired, for main frame documents.
+ </summary>
+</histogram>
+
+<histogram name="PageLoad.Timing2.NavigationToFirstLayout" units="milliseconds">
+ <owner>bmcquade@chromium.org</owner>
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ Measures the time from navigation timing's navigation start to the time the
+ first layout is performed, for main frame documents.
+ </summary>
+</histogram>
+
+<histogram name="PageLoad.Timing2.NavigationToLoadEventFired"
+ units="milliseconds">
+ <owner>bmcquade@chromium.org</owner>
+ <owner>csharrison@chromium.org</owner>
<summary>
Measures the time from navigation timing's navigation start to the time the
load event is fired, for main frame documents.
@@ -77141,6 +77182,15 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="PLT.LoadType"/>
</histogram_suffixes>
+<histogram_suffixes name="PageLoadBackgrounded" separator=".">
+ <suffix name="BG"
+ label="Event occurred at least partially in the background"/>
+ <affected-histogram
+ name="PageLoad.Timing2.NavigationToDOMContentLoadedEventFired"/>
+ <affected-histogram name="PageLoad.Timing2.NavigationToFirstLayout"/>
+ <affected-histogram name="PageLoad.Timing2.NavigationToLoadEventFired"/>
+</histogram_suffixes>
+
<histogram_suffixes name="PageLoadType">
<suffix name="HistoryLoad"
label="but only for user pressing back or forward"/>
« no previous file with comments | « components/page_load_metrics/renderer/metrics_render_frame_observer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698