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

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

Issue 1146813010: Introduce moderate binding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index f5a2958cf40b5e8f661e4a13bdb73ed486a20969..ca5d21e8e92f9d4f72f407297f5bbfeddefafda3 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>
@@ -44127,6 +44136,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>
@@ -44253,6 +44270,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>
@@ -67435,6 +67461,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"/>

Powered by Google App Engine
This is Rietveld 408576698