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

Unified Diff: chrome/browser/chromeos/arc/arc_optin_uma.h

Issue 1892873002: Add CheckAndroidManagement to ARC sign-in flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@check_android_management
Patch Set: Added OnShutdownBridge to observer. Created 4 years, 8 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/chromeos/arc/arc_optin_uma.h
diff --git a/chrome/browser/chromeos/arc/arc_optin_uma.h b/chrome/browser/chromeos/arc/arc_optin_uma.h
index 11eabe148618a85c6e15859a192365b4ca2ac600..a35afd0c93697dd9a52781a6bb9d7499b8a41db3 100644
--- a/chrome/browser/chromeos/arc/arc_optin_uma.h
+++ b/chrome/browser/chromeos/arc/arc_optin_uma.h
@@ -20,14 +20,15 @@ enum class OptInActionType : int {
};
enum class OptInCancelReason {
- USER_CANCEL = 0, // Canceled by user.
- UNKNOWN_ERROR = 1, // Unclassified failure.
- NETWORK_ERROR = 2, // Network failure.
- SERVICE_UNAVAILABLE = 3, // GMS Services are not available.
- BAD_AUTHENTICATION = 4, // Bad authentication returned by server.
- GMS_CORE_NOT_AVAILABLE = 5, // GMS Core is not available.
- CLOUD_PROVISION_FLOW_FAIL = 6, // Cloud provision flow failed.
- SIZE, // The size of this enum; keep last.
+ USER_CANCEL = 0, // Canceled by user.
+ UNKNOWN_ERROR = 1, // Unclassified failure.
+ NETWORK_ERROR = 2, // Network failure.
+ SERVICE_UNAVAILABLE = 3, // GMS Services are not available.
+ BAD_AUTHENTICATION = 4, // Bad authentication returned by server.
+ GMS_CORE_NOT_AVAILABLE = 5, // GMS Core is not available.
+ CLOUD_PROVISION_FLOW_FAIL = 6, // Cloud provision flow failed.
+ ANDROID_MANAGEMENT_REQUIRED = 7, // Android management is required for user.
+ SIZE, // The size of this enum; keep last.
};
void UpdateOptInActionUMA(OptInActionType type);

Powered by Google App Engine
This is Rietveld 408576698