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

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

Issue 1299513002: [Android] Add support for a hung renderer dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename histogram Created 5 years, 3 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 515673243075ffe73d19964f2caf110b36fd3eee..0f6090bd46158005417c2b5ceb97c8840da44cab 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -35547,6 +35547,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Renderer.Hung.MobileInfoBar.UserEvent"
+ enum="MobileHungRendererInfoBarEvent">
+ <owner>jdduke@chromium.org</owner>
+ <summary>
+ Android: Records the terminal event associated with a hung renderer infobar.
+ This includes both the explicit user actions as well as implicit dismissals,
+ e.g., when the renderer regains responsiveness before the infobar is
+ interactively dismissed.
+ </summary>
+</histogram>
+
<histogram name="Renderer.LayoutMs" units="milliseconds">
<obsolete>
Deprecated as of 3/2015.
@@ -65078,6 +65089,14 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="4" label="No thanks"/>
</enum>
+<enum name="MobileHungRendererInfoBarEvent" type="int">
+ <int value="0" label="Clicked the 'Wait' button"/>
+ <int value="1" label="Clicked the 'Kill' button"/>
+ <int value="2" label="Clicked the 'X' (close) button)"/>
+ <int value="3" label="Infobar dismissed after renderer became responsive"/>
+ <int value="4" label="Infobar dismissed on shutdown"/>
+</enum>
+
<enum name="MobileSessionShutdownType" type="int">
<int value="0" label="Shutdown in background"/>
<int value="1" label="Shutdown in foreground; no log; no memory warning"/>

Powered by Google App Engine
This is Rietveld 408576698