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

Commit d55b43a4 authored by chapin's avatar chapin Committed by Automerger Merge Worker
Browse files

Revert "Bluetooth updateability: Move BluetoothPhoneService out ..." am:...

Revert "Bluetooth updateability: Move BluetoothPhoneService out ..." am: df68d921 am: 8dc61e0b am: d14ee364

Original change: https://android-review.googlesource.com/c/platform/packages/services/Telecomm/+/1542646

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I7bdd74a365857e4415d06169a1d59b4ef7572792
parents 4af0a9e7 d14ee364
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -36,6 +36,19 @@ public class BluetoothHeadsetProxy {
        mBluetoothHeadset = headset;
    }

    public void clccResponse(int index, int direction, int status, int mode, boolean mpty,
            String number, int type) {

        mBluetoothHeadset.clccResponse(index, direction, status, mode, mpty, number, type);
    }

    public void phoneStateChanged(int numActive, int numHeld, int callState, String number,
            int type, String name) {

        mBluetoothHeadset.phoneStateChanged(numActive, numHeld, callState, number, type,
            name);
    }

    public List<BluetoothDevice> getConnectedDevices() {
        return mBluetoothHeadset.getConnectedDevices();
    }
Loading