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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1146813010: Introduce moderate binding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comments Created 5 years, 6 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 | « content/public/android/javatests/src/org/chromium/content/browser/BindingManagerImplTest.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 067ada3d9df170085dc09bd80d698664cd7eafec..10fb2364d7ff496e56a8a2ce8665ceaa46a63e07 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -268,6 +268,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Android.ModerateBindingCount" units="bindings">
+ <owner>jaekyun@chromium.org</owner>
+ <summary>
+ The number of moderate bindings which were kept while Chrome process is in
+ the foreground. This is logged right before Chrome process goes into the
+ background.
+ </summary>
+</histogram>
+
<histogram name="Android.SeccompStatus.Prctl" enum="AndroidSeccompStatus">
<owner>rsesek@chromium.org</owner>
<summary>
@@ -44153,6 +44162,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Tab.RendererCrashStatus" enum="TabRendererCrashStatus">
+ <owner>jaekyun@chromium.org</owner>
+ <summary>
+ The status of a tab and an application when a renderer crashes. This is
+ recorded only for Android when a renderer crashes.
+ </summary>
+</histogram>
+
<histogram name="Tab.RestoreResult" enum="TabRestoreResult">
<owner>lliabraa@chromium.org</owner>
<summary>
@@ -44279,6 +44296,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Tab.TotalTabCount.BeforeLeavingApp" units="tabs">
+ <owner>jaekyun@chromium.org</owner>
+ <summary>
+ The total count of tabs which were kept while Chrome process is in the
+ foreground. This is recorded only for Android right before Chrome process
+ goes into the background.
+ </summary>
+</histogram>
+
<histogram name="Tabs.CountAtResume" units="tabs">
<owner>lliabraa@chromium.org</owner>
<summary>
@@ -67488,6 +67514,12 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="2" label="Not loaded on creation"/>
</enum>
+<enum name="TabRendererCrashStatus" type="int">
+ <int value="0" label="Shown in foreground app"/>
+ <int value="1" label="Hidden in foreground app"/>
+ <int value="2" label="Hidden in background app"/>
+</enum>
+
<enum name="TabRestoreResult" type="int">
<int value="0" label="Failure (other)"/>
<int value="1" label="Success"/>
« no previous file with comments | « content/public/android/javatests/src/org/chromium/content/browser/BindingManagerImplTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698