Add enum value for BT main / scanning toggle states

Bug: 215574482
Test: compile
Change-Id: Ic8160375f79acf4fb8b69e90478e86cb1cbf32d4
This commit is contained in:
Anthony
2022-01-20 20:43:59 +00:00
parent 82d45061f9
commit 88c6269a58
2 changed files with 10 additions and 0 deletions

View File

@@ -39,4 +39,6 @@ enum Setting {
WIFI_SCANNING = 3,
AIRPLANE_MODE = 4,
MICROPHONE = 5,
BT_MAIN = 6,
BT_SCANNING = 7,
}

View File

@@ -39,4 +39,12 @@ enum Setting {
* by CHRE.
*/
MICROPHONE,
/**
* The main BT toggle in the Android settings for BT connectivity.
*/
BT_MAIN,
/**
* The "BT scanning" setting for location scans.
*/
BT_SCANNING,
}