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

Commit 412e35af authored by Jack He's avatar Jack He Committed by Android (Google) Code Review
Browse files

Merge "Atom: Keep obfuscated_id name in BluetoothConnectionStateChanged"

parents 96ec115e ac33c998
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];
}

/**