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

Commit 310610d2 authored by Philip P. Moltmann's avatar Philip P. Moltmann Committed by android-build-merger
Browse files

Merge "Pipe featureId from app to noteOp in BT code"

am: 7eff9ef7

Change-Id: Icf861328e295f71b9a9902341761cdd7c197483b
parents c33d5982 7eff9ef7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ interface IBluetooth
    int getDiscoverableTimeout();
    boolean setDiscoverableTimeout(int timeout);

    boolean startDiscovery(String callingPackage);
    boolean startDiscovery(String callingPackage, String callingFeatureId);
    boolean cancelDiscovery();
    boolean isDiscovering();
    long getDiscoveryEndMillis();
+2 −2
Original line number Diff line number Diff line
@@ -46,9 +46,9 @@ interface IBluetoothGatt {
    void registerScanner(in IScannerCallback callback, in WorkSource workSource);
    void unregisterScanner(in int scannerId);
    void startScan(in int scannerId, in ScanSettings settings, in List<ScanFilter> filters,
                   in List scanStorages, in String callingPackage);
                   in List scanStorages, in String callingPackage, String callingFeatureId);
    void startScanForIntent(in PendingIntent intent, in ScanSettings settings, in List<ScanFilter> filters,
                            in String callingPackage);
                            in String callingPackage, String callingFeatureId);
    void stopScanForIntent(in PendingIntent intent, in String callingPackage);
    void stopScan(in int scannerId);
    void flushPendingBatchResults(in int scannerId);