diff options
author | Antony Sargent <asargent@google.com> | 2019-04-29 14:17:35 -0700 |
---|---|---|
committer | Antony Sargent <asargent@google.com> | 2019-04-29 15:07:06 -0700 |
commit | 0a7036b919774c45de132972f02f1487f15dad0c (patch) | |
tree | 7bae7efb7fc241e999fc2cdedfb60f36022a457d | |
parent | a58591179b40ca5efafef7f612ba3be46f0187d3 (diff) |
Add metrics for Delete sim dialogs
These are for the new dialogs being added for b/124254555. There is one
for the confirmation dialog, and one for the progress dialog.
Bug: 131519375
Test: manual
Change-Id: I32d639f45b5b2d5ef14c53c37f5d8e34f27524bd
-rw-r--r-- | core/proto/android/app/settings_enums.proto | 7 | ||||
-rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index 1ff7418a3ef8..9cffb2bf1601 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -2354,4 +2354,11 @@ enum PageId { // OPEN: Settings > Pick preferred SIM dialog DIALOG_PREFERRED_SIM_PICKER = 1709; + + // OPEN: Settings > Network & internet > Mobile network > Delete sim + DIALOG_DELETE_SIM_CONFIRMATION = 1713; + + // OPEN: Settings > Network & internet > Mobile network > Delete sim > (answer yes to + // confirmation) + DIALOG_DELETE_SIM_PROGRESS = 1714; } diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index 21c6035da038..fe92d45b297d 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -7206,6 +7206,13 @@ message MetricsEvent { // ACTION: Share Wi-Fi hotspot by generating a QR code ACTION_SETTINGS_SHARE_WIFI_HOTSPOT_QR_CODE = 1712; + // OPEN: Settings > Network & internet > Mobile network > Delete sim + DIALOG_DELETE_SIM_CONFIRMATION = 1713; + + // OPEN: Settings > Network & internet > Mobile network > Delete sim > (answer yes to + // confirmation) + DIALOG_DELETE_SIM_PROGRESS = 1714; + // ---- End Q Constants, all Q constants go above this line ---- // Add new aosp constants above this line. // END OF AOSP CONSTANTS |