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

Commit 4f0afd6f authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "OOB generateLocalOobData" into sc-dev am: 859ba010

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

Change-Id: Ib67bf2c6702c7ad0faa0b05c3b7f5c9cf9b33ce8
parents 8b7f070d 859ba010
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1948,6 +1948,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
@@ -3095,8 +3095,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);

@@ -3104,8 +3102,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);
    }