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

Unified Diff: chrome/browser/ui/sync/signin_histogram.h

Issue 12313012: Adding a histrogram to track account missmatch for signin reauth. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/sync/signin_histogram.h
diff --git a/chrome/browser/ui/sync/signin_histogram.h b/chrome/browser/ui/sync/signin_histogram.h
new file mode 100644
index 0000000000000000000000000000000000000000..1137e4beca55cc6a1d15cfc85e1ca2060e93a7a2
--- /dev/null
+++ b/chrome/browser/ui/sync/signin_histogram.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_UI_SYNC_SIGNIN_HISTOGRAM_H_
+#define CHROME_BROWSER_UI_SYNC_SIGNIN_HISTOGRAM_H_
+
+namespace signin {
+
+// Enum values used for use with the "Signin.Reauth" histogram.
+enum account_reauth{
+ // The user gave the wrong email when doing a reauth.
+ HISTOGRAM_ACCOUNT_MISSMATCH,
+
+ // The user given a reauth login screen.
+ HISTOGRAM_SHOWN,
+
+ HISTOGRAM_MAX
+};
+
+}
+
+#endif // CHROME_BROWSER_UI_SYNC_SIGNIN_HISTOGRAM_H_

Powered by Google App Engine
This is Rietveld 408576698