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

Commit 340e84d3 authored by Jack He's avatar Jack He Committed by android-build-merger
Browse files

Merge "Remove BluetoothDevice.ACTION_DISAPPEARED" am: cf117607

am: 7886cfcf

Change-Id: I6a742cb541d072338707b5b611f9afc7f541275f
parents 096371b7 7886cfcf
Loading
Loading
Loading
Loading
+0 −19
Original line number Diff line number Diff line
@@ -97,7 +97,6 @@ public class BluetoothEventManager {
        addHandler(BluetoothAdapter.ACTION_DISCOVERY_STARTED, new ScanningStateChangedHandler(true));
        addHandler(BluetoothAdapter.ACTION_DISCOVERY_FINISHED, new ScanningStateChangedHandler(false));
        addHandler(BluetoothDevice.ACTION_FOUND, new DeviceFoundHandler());
        addHandler(BluetoothDevice.ACTION_DISAPPEARED, new DeviceDisappearedHandler());
        addHandler(BluetoothDevice.ACTION_NAME_CHANGED, new NameChangedHandler());
        addHandler(BluetoothDevice.ACTION_ALIAS_CHANGED, new NameChangedHandler());

@@ -280,24 +279,6 @@ public class BluetoothEventManager {
        }
    }

    private class DeviceDisappearedHandler implements Handler {
        public void onReceive(Context context, Intent intent,
                BluetoothDevice device) {
            CachedBluetoothDevice cachedDevice = mDeviceManager.findDevice(device);
            if (cachedDevice == null) {
                Log.w(TAG, "received ACTION_DISAPPEARED for an unknown device: " + device);
                return;
            }
            if (CachedBluetoothDeviceManager.onDeviceDisappeared(cachedDevice)) {
                synchronized (mCallbacks) {
                    for (BluetoothCallback callback : mCallbacks) {
                        callback.onDeviceDeleted(cachedDevice);
                    }
                }
            }
        }
    }

    private class NameChangedHandler implements Handler {
        public void onReceive(Context context, Intent intent,
                BluetoothDevice device) {