diff options
| author | 2018-10-31 17:56:26 -0700 | |
|---|---|---|
| committer | 2018-10-31 17:56:26 -0700 | |
| commit | b879f51b41d09280f6562601241ee7773e2bbffb (patch) | |
| tree | 3be4cb3304ca831f5a1646ab5c0f1246eeb2eb13 | |
| parent | 2e0076549314742bd087f82417b50498c69aeaa0 (diff) | |
Add biometric enroll constant
Bug: 112925362
Test: Builds
Change-Id: I96aec2d14dac8f0056bf45215a539e5c5abb2de9
| -rw-r--r-- | core/proto/android/app/settings_enums.proto | 3 | ||||
| -rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index 1dc435c0c7ce..c1f7d571d828 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -59,5 +59,8 @@ enum PageId { // ConfirmDeviceCredentials > BiometricPrompt BIOMETRIC_FRAGMENT = 1585; + + // OPEN: Biometric Enrollment (android.settings.BIOMETRIC_ENROLL action intent) + BIOMETRIC_ENROLL_ACTIVITY = 1586; } diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index d15b277b22c3..ddd0c2cd2531 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -6574,6 +6574,11 @@ message MetricsEvent { // OS: Q BIOMETRIC_FRAGMENT = 1585; + // OPEN: Biometric Enrollment (android.settings.BIOMETRIC_ENROLL action intent) + // CATEGORY: SETTINGS + // OS: Q + BIOMETRIC_ENROLL_ACTIVITY = 1586; + // ---- End Q Constants, all Q constants go above this line ---- // Add new aosp constants above this line. |