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

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

Issue 2318373003: Record shutdown type UMA (Closed)
Patch Set: Add description Created 4 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
« no previous file with comments | « chrome/browser/lifetime/application_lifetime.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 edfe252772965e0350e02f6d75f453a54ef84ed6..3c1bebf129444b9a2a0c4bee52ac7e496826e1dc 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -55689,6 +55689,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Shutdown.ShutdownType" enum="ShutdownType">
+ <owner>hashimoto@chromium.org</owner>
+ <summary>The type of the last shutdown.</summary>
+</histogram>
+
<histogram name="Signin" enum="SigninHelperFlow">
<owner>mlerman@chromium.org</owner>
<summary>
@@ -94699,6 +94704,13 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="6" label="Dark resume failed"/>
</enum>
+<enum name="ShutdownType" type="int">
+ <int value="0" label="Not valid">Invalid value.</int>
+ <int value="1" label="Window close">The last browser window was closed.</int>
+ <int value="2" label="Browser exit">User clicked on the Exit menu item.</int>
+ <int value="3" label="End session">OS is logging off or shutting down.</int>
+</enum>
+
<enum name="SideloadUIEvents" type="int">
<int value="0" label="Extension installed"/>
<int value="1" label="Extension ignored"/>
« no previous file with comments | « chrome/browser/lifetime/application_lifetime.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698