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

Commit 5a9fcc3d authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "OOB generateLocalOobData" am: 3a4f3191 am: bb6ea345

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1677745

Change-Id: Idcbf693aa6336aea76c0fa7d97262132c0cdeb8a
parents afa759cd bb6ea345
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1502,6 +1502,8 @@ package android.bluetooth {
  }
  public static interface BluetoothAdapter.OobDataCallback {
    method public void onError(int);
    method public void onOobData(int, @Nullable android.bluetooth.OobData);
  }
  public final class BluetoothDevice implements android.os.Parcelable {
+0 −4
Original line number Diff line number Diff line
@@ -3062,8 +3062,6 @@ public final class BluetoothAdapter {
         *
         * @param transport - whether the {@link OobData} is generated for LE or Classic.
         * @param oobData - data generated in the host stack(LE) or controller (Classic)
         *
         * @hide
         */
        void onOobData(@Transport int transport, @Nullable OobData oobData);

@@ -3071,8 +3069,6 @@ public final class BluetoothAdapter {
         * Provides feedback when things don't go as expected.
         *
         * @param errorCode - the code descibing the type of error that occurred.
         *
         * @hide
         */
        void onError(@OobError int errorCode);
    }