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

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

Issue 1473753002: Re-land "Add stats to distinguish android renderer crashes." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 1c995557015330c119021df7e62c89f8f6f1a440..e16bc06d1fdc3fd781a353168b43c04449a718b6 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -48499,6 +48499,23 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Tab.RendererDetailedExitStatus"
+ enum="TabRendererDetailedExitStatus">
+ <owner>wnwen@chromium.org</owner>
+ <summary>
+ Breakdown of renderer exit status. An extension of the counts in
+ Tab.RendererExitStatus. Only recorded on Android.
+ </summary>
+</histogram>
+
+<histogram name="Tab.RendererExitStatus" enum="TabRendererExitStatus">
+ <owner>wnwen@chromium.org</owner>
+ <summary>
+ The status of a renderer when the browser notices that the process has
+ exited. Only recorded on Android.
+ </summary>
+</histogram>
+
<histogram name="Tab.RestoreResult" enum="TabRestoreResult">
<owner>lliabraa@chromium.org</owner>
<summary>
@@ -76690,6 +76707,24 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="2" label="Hidden in background app"/>
</enum>
+<enum name="TabRendererDetailedExitStatus" type="int">
+ <int value="0" label="Empty minidump in running app"/>
+ <int value="1" label="Empty minidump in paused app"/>
+ <int value="2" label="Empty minidump in background app"/>
+ <int value="3" label="Valid minidump in running app"/>
+ <int value="4" label="Valid minidump in paused app"/>
+ <int value="5" label="Valid minidump in background app"/>
+</enum>
+
+<enum name="TabRendererExitStatus" type="int">
+ <int value="0" label="OOM protected in running app"/>
+ <int value="1" label="OOM protected in paused app"/>
+ <int value="2" label="OOM protected in background app"/>
+ <int value="3" label="Not protected in running app"/>
+ <int value="4" label="Not protected in paused app"/>
+ <int value="5" label="Not protected 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