diff options
author | 2019-04-19 13:59:59 -0700 | |
---|---|---|
committer | 2019-04-19 14:24:22 -0700 | |
commit | 6cd3b901231290c7f25e9310420f75f5700f7a2c (patch) | |
tree | 0ab43e6c88d136e73cf437d7eb58b1bbefb12f21 | |
parent | f090b5896e4d53953d27614112814bf9834a1c17 (diff) |
Add logging enums for 3 new SIM related pages.
Bug: 130897640
Test: rebuild
Change-Id: I97fa886d54af7f1035b2fda100e276c5b34c5c63
-rw-r--r-- | core/proto/android/app/settings_enums.proto | 9 | ||||
-rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 15 |
2 files changed, 24 insertions, 0 deletions
diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index ace88f503e72..c828cac4ed78 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -2336,4 +2336,13 @@ enum PageId { // CATEGORY: SETTINGS // OS: Q ACTION_DISPLAY_WHITE_BALANCE_SETTING_CHANGED = 1703; + + // OPEN: Settings > Pick SIM dialog + DIALOG_SIM_LIST = 1707; + + // OPEN: Settings > Pick SIM (that supports calling) dialog + DIALOG_CALL_SIM_LIST = 1708; + + // OPEN: Settings > Pick preferred SIM dialog + DIALOG_PREFERRED_SIM_PICKER = 1709; } diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index 3babb6d943f5..bf76fdbfda46 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -7182,6 +7182,21 @@ message MetricsEvent { // OS: Q QS_UI_MODE_NIGHT = 1706; + // OPEN: Settings > Pick SIM dialog + // CATEGORY: SETTINGS + // OS: Q + DIALOG_SIM_LIST = 1707; + + // OPEN: Settings > Pick SIM (that supports calling) dialog + // CATEGORY: SETTINGS + // OS: Q + DIALOG_CALL_SIM_LIST = 1708; + + // OPEN: Settings > Pick preferred SIM dialog + // CATEGORY: SETTINGS + // OS: Q + DIALOG_PREFERRED_SIM_PICKER = 1709; + // ---- End Q Constants, all Q constants go above this line ---- // Add new aosp constants above this line. // END OF AOSP CONSTANTS |