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

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

Issue 2554003003: Log NTP launch time until user can do a search. (Closed)
Patch Set: Address review comments from bauerb. Created 4 years 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 | « chrome/android/java/src/org/chromium/chrome/browser/tab/Tab.java ('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 b67c2b49be90fcdf21103032acfb2e0f6c854ad7..257225aa6c997a3e9c2db7f4cd8b8e30b53b42e1 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -38350,6 +38350,13 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="NewTabPage.LoadType" enum="NTPLoadType">
+ <owner>mvanouwerkerk@chromium.org</owner>
+ <summary>
+ A histogram for the type of load for the NTP, such as cold or warm start.
Alexei Svitkine (slow) 2016/12/06 18:00:54 If a histogram is Java only, please mention so in
Michael van Ouwerkerk 2016/12/07 11:08:21 Done.
+ </summary>
+</histogram>
+
<histogram name="NewTabPage.LogoClick" enum="NewTabPageLogoClick">
<owner>ianwen@chromium.org</owner>
<summary>
@@ -38695,6 +38702,20 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="NewTabPage.SearchAvailableLoadTime.ColdStart" units="ms">
+ <owner>mvanouwerkerk@chromium.org</owner>
+ <summary>
+ The time until the search box became available on the NTP in a cold start.
+ </summary>
+</histogram>
+
+<histogram name="NewTabPage.SearchAvailableLoadTime.WarmStart" units="ms">
+ <owner>mvanouwerkerk@chromium.org</owner>
+ <summary>
+ The time until the search box became available on the NTP in a warm start.
+ </summary>
+</histogram>
+
<histogram name="NewTabPage.SearchURLs.Total">
<obsolete>
Deprecated 2016-02 (and not recorded for some time before that).
@@ -95908,6 +95929,12 @@ value.
<int value="4" label="Fits with field trial"/>
</enum>
+<enum name="NTPLoadType" type="int">
+ <int value="0" label="Cold startup"/>
+ <int value="1" label="Warm startup"/>
+ <int value="2" label="Other, not at startup"/>
+</enum>
+
<enum name="NtpMostVisitedScheme" type="int">
<obsolete>
Deprecated 2016-05.
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/tab/Tab.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698