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

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: SignOut() param in Android tests 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
« no previous file with comments | « components/signin/core/browser/signin_metrics.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 8ff2149da299371b8e7d69b6f9ac6c98c35cbb70..a9d90e0494bee17bf11b9f1c5612e40e39fe89d7 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -26939,6 +26939,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>
@@ -45262,6 +45267,31 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="10" label="Undo">The sync was aborted with an undo button.</int>
</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"/>
« no previous file with comments | « components/signin/core/browser/signin_metrics.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698