diff options
author | William Escande <wescande@google.com> | 2022-03-15 23:31:37 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2022-03-15 23:31:37 +0000 |
commit | 7e4495a24f595762d3729407a8e4e8ecb482fb9c (patch) | |
tree | 6145a3a0ece19f7bd50280f862090986641c6d87 /framework/java/android | |
parent | e41b060e3cd28e9a2281800637d41315758c3183 (diff) | |
parent | ba29d7e0735e1698a42c20d7623d166240746092 (diff) |
Merge "API Review: Add prepareToEnterProcess javadoc" am: 17f869d80e am: 14ce8d3779 am: ba29d7e073
Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/2026503
Change-Id: Ia669f5dea0fd419ea8a0b275e3845cd16a14ac31
Diffstat (limited to 'framework/java/android')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothDevice.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothDevice.java b/framework/java/android/bluetooth/BluetoothDevice.java index 90aa3000e6..978c8ed4ac 100644 --- a/framework/java/android/bluetooth/BluetoothDevice.java +++ b/framework/java/android/bluetooth/BluetoothDevice.java @@ -1323,7 +1323,14 @@ public final class BluetoothDevice implements Parcelable, Attributable { mAttributionSource = attributionSource; } - /** {@hide} */ + /** + * Method should never be used anywhere. Only exception is from {@link Intent} + * Used to set the device current attribution source + * + * @param attributionSource The associated {@link AttributionSource} for this device in this + * process + * @hide + */ @SystemApi @RequiresPermission(android.Manifest.permission.BLUETOOTH_PRIVILEGED) public void prepareToEnterProcess(@NonNull AttributionSource attributionSource) { |