diff options
author | 2019-04-22 21:37:29 +0000 | |
---|---|---|
committer | 2019-04-22 21:37:29 +0000 | |
commit | 7feb1a1f7d0526dc0518be1ee5068ef51a48e074 (patch) | |
tree | 07f4301062708415696304895641ff8510c5e3a2 | |
parent | 330a3d89fab1f54b9c1cc4f4a25ed2bdbcc9ef4f (diff) | |
parent | 6cd3b901231290c7f25e9310420f75f5700f7a2c (diff) |
Merge "Add logging enums for 3 new SIM related pages." into qt-dev
-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 |