diff options
| -rw-r--r-- | core/proto/android/app/settings_enums.proto | 15 | ||||
| -rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 16 |
2 files changed, 31 insertions, 0 deletions
diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index 631fa1d65773..30b9b7847fb6 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -600,6 +600,16 @@ enum Action { // CATEGORY: SETTINGS // OS: Q CLICK_ACCOUNT_AVATAR = 1643; + + // ACTION: Set new password (action intent android.app.action.SET_NEW_PASSWORD) + // CATEGORY: SETTINGS + // OS: Q + ACTION_SET_NEW_PASSWORD = 1645; + + // ACTION: Set new password (action intent android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD) + // CATEGORY: SETTINGS + // OS: Q + ACTION_SET_NEW_PARENT_PROFILE_PASSWORD = 1646; } /** @@ -2199,4 +2209,9 @@ enum PageId { // details for a SIM/eSIM mobile network > Click edit icon to bring up a rename dialog. // OS: Q MOBILE_NETWORK_RENAME_DIALOG = 1642; + + // OPEN: Set new password (android.app.action.SET_NEW_PASSWORD action intent) + // CATEGORY: SETTINGS + // OS: Q + SET_NEW_PASSWORD_ACTIVITY = 1644; } diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index fceb6567f343..76bb24d81e21 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -6920,6 +6920,22 @@ message MetricsEvent { // OS: Q ACTION_CLICK_ACCOUNT_AVATAR = 1643; + // OPEN: Set new password (action intents android.app.action.SET_NEW_PASSWORD or + // android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD) + // CATEGORY: SETTINGS + // OS: Q + SET_NEW_PASSWORD_ACTIVITY = 1644; + + // ACTION: Set new password (action intent android.app.action.SET_NEW_PASSWORD) + // CATEGORY: SETTINGS + // OS: Q + ACTION_SET_NEW_PASSWORD = 1645; + + // ACTION: Set new password (action intent android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD) + // CATEGORY: SETTINGS + // OS: Q + ACTION_SET_NEW_PARENT_PROFILE_PASSWORD = 1646; + // ---- End Q Constants, all Q constants go above this line ---- // Add new aosp constants above this line. // END OF AOSP CONSTANTS |