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

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

Issue 1447213002: Add stats to distinguish android renderer crashes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove comment and rebase. 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
« no previous file with comments | « components/crash/content/browser/crash_dump_manager_android.cc ('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 b4f77cb3bd008baa95658385455fdfdc7b0609ab..1b0350e83608e43b1ba7b675dd0810bffd312e1b 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -48120,6 +48120,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>
@@ -76133,6 +76150,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"/>
« no previous file with comments | « components/crash/content/browser/crash_dump_manager_android.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698