Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac33c998 authored by Jack He's avatar Jack He
Browse files

Atom: Keep obfuscated_id name in BluetoothConnectionStateChanged

Bug: 112969790
Test: make, test drive with statsd
Change-Id: Ic732d48b69799f241a0e96c159b06c778392d2bf
parent 259c73c0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1406,7 +1406,7 @@ message BluetoothConnectionStateChanged {
    // Currently is last two bytes of a hash of a device level ID and
    // the mac address of the bluetooth device that is connected.
    // Deprecated: use obfuscated_id instead, this one is always 0 for Q+
    optional int32 OBSOLETE_obfuscated_id = 2 [deprecated = true];
    optional int32 obfuscated_id = 2 [deprecated = true];
    // The profile that is connected. Eg. GATT, A2DP, HEADSET.
    // From android.bluetooth.BluetoothAdapter.java
    // Default: 0 when not used
@@ -1417,7 +1417,7 @@ message BluetoothConnectionStateChanged {
    // Hash algorithm: HMAC-SHA256
    // Size: 32 byte
    // Default: null or empty if the device identifier is not known
    optional bytes obfuscated_id = 4 [(android.os.statsd.log_mode) = MODE_BYTES];
    optional bytes new_obfuscated_id = 4 [(android.os.statsd.log_mode) = MODE_BYTES];
}

/**