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

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

Issue 2672603003: Avoid loading an empty token when decrypt failed (Closed)
Patch Set: Fix histogram names Created 3 years, 10 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/webdata/token_service_table.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 f6c9f8713876677091c92fe192141960123c7a80..b39097fc850b700307a5a6a738658e76ab8f9a92 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -62702,6 +62702,22 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<summary>Track how a profile gets signed out.</summary>
</histogram>
+<histogram name="Signin.TokenTable.GetAllTokensSqlStatementValidity"
+ enum="BooleanValid">
+ <owner>msarda@chromium.org</owner>
+ <summary>
+ Counts how many times the SQL statements to get all tokens is valid.
+ </summary>
+</histogram>
+
+<histogram name="Signin.TokenTable.ReadTokenFromDBResult"
+ enum="SigninTokenTableReadTokenFromDBResult">
+ <owner>msarda@chromium.org</owner>
+ <summary>
+ Counts the results of loading a refresh token from the token database.
+ </summary>
+</histogram>
+
<histogram name="Signin.UberTokenFailure" enum="GoogleServiceAuthError">
<owner>mlerman@chromium.org</owner>
<summary>
@@ -106003,6 +106019,12 @@ value.
<int value="12" label="Unknown"/>
</enum>
+<enum name="SigninTokenTableReadTokenFromDBResult" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="Decrypt failed"/>
+ <int value="2" label="Read DB failed (bad entry)"/>
+</enum>
+
<enum name="SigninXDevicePromoEligibility" type="int">
<int value="0" label="Eligible">The user is eligible for the promo.</int>
<int value="1" label="Opted Out">
« no previous file with comments | « components/signin/core/browser/webdata/token_service_table.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698