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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2554003003: Log NTP launch time until user can do a search. (Closed)
Patch Set: Address review comments from asvitkine. 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..70a34ac38bddae81f38961c9f2980d7c267ed9b7 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -38350,6 +38350,16 @@ 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>
+ Android: the type of load for the NTP, such as cold or warm start. It's a
+ warm start if the native library is already loaded and initialized at the
Alexei Svitkine (slow) 2016/12/07 16:36:05 Nit: Suggest copying this extra description to the
Michael van Ouwerkerk 2016/12/07 17:15:50 Done.
+ time the activity is created. This might happen if for example a service was
+ already running.
+ </summary>
+</histogram>
+
<histogram name="NewTabPage.LogoClick" enum="NewTabPageLogoClick">
<owner>ianwen@chromium.org</owner>
<summary>
@@ -38695,6 +38705,22 @@ 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>
+ Android: 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>
+ Android: 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 +95934,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