diff options
| -rw-r--r-- | core/proto/android/app/settings_enums.proto | 44 | 
1 files changed, 23 insertions, 21 deletions
diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index c1f7d571d828..54333938c52d 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -26,41 +26,43 @@ enum Action {      ACTION_UNKNOWN = 0;      PAGE_VISIBLE = 1;      PAGE_HIDE = 2; -    PREF_CHANGE = 3; + +    // ACTION: Settings > Any preference is changed +    ACTION_SETTINGS_PREFERENCE_CHANGE = 853;  }  /**   * Id for Settings pages. Each page must have its own unique Id.   */  enum PageId { -  // Unknown page. Should not be used in production code. -  PAGE_UNKNOWN = 0; +    // Unknown page. Should not be used in production code. +    PAGE_UNKNOWN = 0; -  // OPEN: Settings homepage -  SETTINGS_HOMEPAGE = 1502; +    // OPEN: Settings homepage +    SETTINGS_HOMEPAGE = 1502; -  // OPEN: Settings > System > Input & Gesture > Wake screen -  SETTINGS_GESTURE_WAKE_SCREEN = 1570; +    // OPEN: Settings > System > Input & Gesture > Wake screen +    SETTINGS_GESTURE_WAKE_SCREEN = 1570; -  // OPEN: Settings > Network & internet > Mobile network -  MOBILE_NETWORK = 1571; +    // OPEN: Settings > Network & internet > Mobile network +    MOBILE_NETWORK = 1571; -  // OPEN: Settings > Network & internet > Mobile network > Choose network -  MOBILE_NETWORK_SELECT = 1581; +    // OPEN: Settings > Network & internet > Mobile network > Choose network +    MOBILE_NETWORK_SELECT = 1581; -  // OPEN: Settings > Network & internet > Mobile network > Mobile Data > Dialog -  MOBILE_DATA_DIALOG = 1582; +    // OPEN: Settings > Network & internet > Mobile network > Mobile Data > Dialog +    MOBILE_DATA_DIALOG = 1582; -  // OPEN: Settings > Network & internet > Mobile network > Data roaming > Dialog -  MOBILE_ROAMING_DIALOG = 1583; +    // OPEN: Settings > Network & internet > Mobile network > Data roaming > Dialog +    MOBILE_ROAMING_DIALOG = 1583; -  // Settings > Display > Lock screen display > On lock screen -  LOCK_SCREEN_NOTIFICATION_CONTENT = 1584; +    // Settings > Display > Lock screen display > On lock screen +    LOCK_SCREEN_NOTIFICATION_CONTENT = 1584; -  // ConfirmDeviceCredentials > BiometricPrompt -  BIOMETRIC_FRAGMENT = 1585; +    // ConfirmDeviceCredentials > BiometricPrompt +    BIOMETRIC_FRAGMENT = 1585; -  // OPEN: Biometric Enrollment (android.settings.BIOMETRIC_ENROLL action intent) -  BIOMETRIC_ENROLL_ACTIVITY = 1586; +    // OPEN: Biometric Enrollment (android.settings.BIOMETRIC_ENROLL action intent) +    BIOMETRIC_ENROLL_ACTIVITY = 1586;  }  |