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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2771943003: arc: Skip GMS Sign-In in case Android is already signed-in. (Closed)
Patch Set: Created 3 years, 9 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/arc/common/auth.mojom ('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 878604d99644e15ecdff50b057639a60701dcc83..d2a27c0a13a571a6b84897e2c0d2bdcbec968c22 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -1639,6 +1639,19 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="ArcAuth.AccountCheckStatus" enum="ArcAuthAccountCheckStatus">
+ <owner>elijahtaylor@google.com</owner>
+ <summary>The status of account check before GMS Sign-in.</summary>
+</histogram>
+
+<histogram name="ArcAuth.AccountCheckTime" units="ms">
+ <owner>elijahtaylor@chromium.org</owner>
+ <summary>
+ Elapsed time waiting for the account status check to be completed. This is
+ not recorded in case account status check failed for some reason.
Luis Héctor Chávez 2017/03/24 22:02:32 nit: "This is not recorded in case of account stat
khmel 2017/03/24 22:40:21 I don't expect this happens in real time (probably
+ </summary>
+</histogram>
+
<histogram name="ArcAuth.CheckinAttempts" units="attempts">
<owner>elijahtaylor@chromium.org</owner>
<summary>
@@ -81513,6 +81526,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="4" label="Outside of NTP (e.g. bookmarks bar)"/>
</enum>
+<enum name="ArcAuthAccountCheckStatus" type="int">
+ <summary>Defines ARC account check statuses</summary>
+ <int value="0" label="Account is up to date"/>
+ <int value="1" label="New account"/>
+ <int value="2" label="Account needs reauth"/>
+ <int value="3" label="Account has unknown state"/>
+ <int value="4" label="Account check failed"/>
+</enum>
+
<enum name="ArcIntentHandlerAction" type="int">
<summary>Defines Arc intent handler actions</summary>
<int value="0" label="Error"/>
« no previous file with comments | « components/arc/common/auth.mojom ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698