Merge "Add persistent state for Hearing Aid Profile"
This commit is contained in:
@@ -9224,6 +9224,9 @@ public final class Settings {
|
|||||||
/** {@hide} */
|
/** {@hide} */
|
||||||
public static final String
|
public static final String
|
||||||
BLUETOOTH_PAN_PRIORITY_PREFIX = "bluetooth_pan_priority_";
|
BLUETOOTH_PAN_PRIORITY_PREFIX = "bluetooth_pan_priority_";
|
||||||
|
/** {@hide} */
|
||||||
|
public static final String
|
||||||
|
BLUETOOTH_HEARING_AID_PRIORITY_PREFIX = "bluetooth_hearing_aid_priority_";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Activity manager specific settings.
|
* Activity manager specific settings.
|
||||||
@@ -9544,6 +9547,14 @@ public final class Settings {
|
|||||||
return BLUETOOTH_PAN_PRIORITY_PREFIX + address.toUpperCase(Locale.ROOT);
|
return BLUETOOTH_PAN_PRIORITY_PREFIX + address.toUpperCase(Locale.ROOT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the key that retrieves a bluetooth hearing aid priority.
|
||||||
|
* @hide
|
||||||
|
*/
|
||||||
|
public static final String getBluetoothHearingAidPriorityKey(String address) {
|
||||||
|
return BLUETOOTH_HEARING_AID_PRIORITY_PREFIX + address.toUpperCase(Locale.ROOT);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the key that retrieves a bluetooth map priority.
|
* Get the key that retrieves a bluetooth map priority.
|
||||||
* @hide
|
* @hide
|
||||||
|
|||||||
@@ -254,6 +254,7 @@ message GlobalSettingsProto {
|
|||||||
SettingProto bluetooth_pbap_client_priority_prefix = 209;
|
SettingProto bluetooth_pbap_client_priority_prefix = 209;
|
||||||
SettingProto bluetooth_sap_priority_prefix = 210;
|
SettingProto bluetooth_sap_priority_prefix = 210;
|
||||||
SettingProto bluetooth_pan_priority_prefix = 211;
|
SettingProto bluetooth_pan_priority_prefix = 211;
|
||||||
|
SettingProto bluetooth_hearing_aid_priority_prefix = 345;
|
||||||
SettingProto device_idle_constants = 212;
|
SettingProto device_idle_constants = 212;
|
||||||
SettingProto device_idle_constants_watch = 213;
|
SettingProto device_idle_constants_watch = 213;
|
||||||
SettingProto app_idle_constants = 214;
|
SettingProto app_idle_constants = 214;
|
||||||
|
|||||||
@@ -121,6 +121,7 @@ public class SettingsBackupTest {
|
|||||||
Settings.Global.BLUETOOTH_PAN_PRIORITY_PREFIX,
|
Settings.Global.BLUETOOTH_PAN_PRIORITY_PREFIX,
|
||||||
Settings.Global.BLUETOOTH_PBAP_CLIENT_PRIORITY_PREFIX,
|
Settings.Global.BLUETOOTH_PBAP_CLIENT_PRIORITY_PREFIX,
|
||||||
Settings.Global.BLUETOOTH_SAP_PRIORITY_PREFIX,
|
Settings.Global.BLUETOOTH_SAP_PRIORITY_PREFIX,
|
||||||
|
Settings.Global.BLUETOOTH_HEARING_AID_PRIORITY_PREFIX,
|
||||||
Settings.Global.BOOT_COUNT,
|
Settings.Global.BOOT_COUNT,
|
||||||
Settings.Global.CAPTIVE_PORTAL_FALLBACK_URL,
|
Settings.Global.CAPTIVE_PORTAL_FALLBACK_URL,
|
||||||
Settings.Global.CAPTIVE_PORTAL_HTTPS_URL,
|
Settings.Global.CAPTIVE_PORTAL_HTTPS_URL,
|
||||||
|
|||||||
@@ -719,6 +719,9 @@ class SettingsProtoDumpUtil {
|
|||||||
dumpSetting(s, p,
|
dumpSetting(s, p,
|
||||||
Settings.Global.BLUETOOTH_PAN_PRIORITY_PREFIX,
|
Settings.Global.BLUETOOTH_PAN_PRIORITY_PREFIX,
|
||||||
GlobalSettingsProto.BLUETOOTH_PAN_PRIORITY_PREFIX);
|
GlobalSettingsProto.BLUETOOTH_PAN_PRIORITY_PREFIX);
|
||||||
|
dumpSetting(s, p,
|
||||||
|
Settings.Global.BLUETOOTH_HEARING_AID_PRIORITY_PREFIX,
|
||||||
|
GlobalSettingsProto.BLUETOOTH_HEARING_AID_PRIORITY_PREFIX);
|
||||||
dumpSetting(s, p,
|
dumpSetting(s, p,
|
||||||
Settings.Global.DEVICE_IDLE_CONSTANTS,
|
Settings.Global.DEVICE_IDLE_CONSTANTS,
|
||||||
GlobalSettingsProto.DEVICE_IDLE_CONSTANTS);
|
GlobalSettingsProto.DEVICE_IDLE_CONSTANTS);
|
||||||
|
|||||||
Reference in New Issue
Block a user