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

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

Issue 338993007: Track when and how a profile is signed out via UMA. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove tracking android in separate UMA bucket Created 6 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 a0de6b30290217e01e9f0c9df65641d0e1085504..41e654a4b00eb127987569f377197829f7255ef7 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -25461,6 +25461,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Signin.SignoutProfile" enum="SigninSignoutProfile">
+ <owner>mlerman@chromium.org</owner>
+ <summary>Track how a profile gets signed out.</summary>
+</histogram>
+
<histogram name="SimpleCache.App.CheckCRCResult" enum="CheckCRCResult">
<owner>Please list the metric's owners. Add more owner tags as needed.</owner>
<summary>
@@ -43481,6 +43486,31 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="13" label="Learn more undo"/>
</enum>
+<enum name="SigninSignoutProfile" type="int">
+ <int value="0" label="Preference changed">
+ The preference or policy controlling if signin is valid has changed.
+ </int>
+ <int value="1" label="Google service pattern changed">
+ The valid username pattern for signing in to the Google service changed.
+ </int>
+ <int value="2" label="Signin preference changed during signin">
+ The preference or policy controlling if signin is valid changed during the
+ signin process.
+ </int>
+ <int value="3" label="User clicked signout">User clicked to signout.</int>
+ <int value="4" label="Signin aborted">
+ The signin process was aborted, but signin had succeeded, so signout. This
+ may be due to a server response, policy definition or user action.
+ </int>
+ <int value="5" label="Server forced">
+ The sync server caused the profile to be signed out.
+ </int>
+ <int value="6" label="Credentials transfered">
+ The credentials are being transfered to a new profile, so the old one is
+ signed out.
+ </int>
+</enum>
+
<enum name="SimpleCache.EntryCreatedAndStream2Omitted" type="int">
<int value="0" label="Stream 2 file was present"/>
<int value="1" label="Empty stream 2 file was omitted"/>

Powered by Google App Engine
This is Rietveld 408576698