summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--api/current.txt3
-rw-r--r--core/java/android/bluetooth/BluetoothAdapter.java3
2 files changed, 3 insertions, 3 deletions
diff --git a/api/current.txt b/api/current.txt
index 8fe26c1..95ef7f0 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -5689,6 +5689,9 @@ package android.bluetooth {
method public int getState();
method public boolean isDiscovering();
method public boolean isEnabled();
+ method public boolean isMultipleAdvertisementSupported();
+ method public boolean isOffloadedFilteringSupported();
+ method public boolean isOffloadedScanBatchingSupported();
method public android.bluetooth.BluetoothServerSocket listenUsingInsecureRfcommWithServiceRecord(java.lang.String, java.util.UUID) throws java.io.IOException;
method public android.bluetooth.BluetoothServerSocket listenUsingRfcommWithServiceRecord(java.lang.String, java.util.UUID) throws java.io.IOException;
method public boolean setName(java.lang.String);
diff --git a/core/java/android/bluetooth/BluetoothAdapter.java b/core/java/android/bluetooth/BluetoothAdapter.java
index 4bc9cfc..be14504 100644
--- a/core/java/android/bluetooth/BluetoothAdapter.java
+++ b/core/java/android/bluetooth/BluetoothAdapter.java
@@ -1031,7 +1031,6 @@ public final class BluetoothAdapter {
/**
* Return true if the multi advertisement is supported by the chipset
*
- * @hide
* @return true if Multiple Advertisement feature is supported
*/
public boolean isMultipleAdvertisementSupported() {
@@ -1047,7 +1046,6 @@ public final class BluetoothAdapter {
/**
* Return true if offloaded filters are supported
*
- * @hide
* @return true if chipset supports on-chip filtering
*/
public boolean isOffloadedFilteringSupported() {
@@ -1063,7 +1061,6 @@ public final class BluetoothAdapter {
/**
* Return true if offloaded scan batching is supported
*
- * @hide
* @return true if chipset supports on-chip scan batching
*/
public boolean isOffloadedScanBatchingSupported() {