diff options
author | Prerepa Viswanadham <dham@google.com> | 2015-04-22 11:11:43 -0700 |
---|---|---|
committer | Prerepa Viswanadham <dham@google.com> | 2015-04-22 12:04:38 -0700 |
commit | 5882f5455f6a9e7e4d6b5f7d9f2ae650de0f2b5c (patch) | |
tree | ce174bb1ba8369df3488660a3d385e941b251f4f /api/current.txt | |
parent | 052a0da4f748eff9392a0dbd41fc5948f7da4cb1 (diff) | |
download | frameworks_base-5882f5455f6a9e7e4d6b5f7d9f2ae650de0f2b5c.zip frameworks_base-5882f5455f6a9e7e4d6b5f7d9f2ae650de0f2b5c.tar.gz frameworks_base-5882f5455f6a9e7e4d6b5f7d9f2ae650de0f2b5c.tar.bz2 |
Make onlost/onfound APIs public
Change-Id: I455124478d953d652f216f71d5813782fc9633ab
Diffstat (limited to 'api/current.txt')
-rw-r--r-- | api/current.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 2b6f50c..698f36d 100644 --- a/api/current.txt +++ b/api/current.txt @@ -6685,7 +6685,14 @@ package android.bluetooth.le { method public int getScanResultType(); method public void writeToParcel(android.os.Parcel, int); field public static final int CALLBACK_TYPE_ALL_MATCHES = 1; // 0x1 + field public static final int CALLBACK_TYPE_FIRST_MATCH = 2; // 0x2 + field public static final int CALLBACK_TYPE_MATCH_LOST = 4; // 0x4 field public static final android.os.Parcelable.Creator<android.bluetooth.le.ScanSettings> CREATOR; + field public static final int MATCH_MODE_AGGRESSIVE = 1; // 0x1 + field public static final int MATCH_MODE_STICKY = 2; // 0x2 + field public static final int MATCH_NUM_FEW_ADVERTISEMENT = 2; // 0x2 + field public static final int MATCH_NUM_MAX_ADVERTISEMENT = 3; // 0x3 + field public static final int MATCH_NUM_ONE_ADVERTISEMENT = 1; // 0x1 field public static final int SCAN_MODE_BALANCED = 1; // 0x1 field public static final int SCAN_MODE_LOW_LATENCY = 2; // 0x2 field public static final int SCAN_MODE_LOW_POWER = 0; // 0x0 @@ -6695,6 +6702,8 @@ package android.bluetooth.le { public static final class ScanSettings.Builder { ctor public ScanSettings.Builder(); method public android.bluetooth.le.ScanSettings build(); + method public android.bluetooth.le.ScanSettings.Builder setMatchMode(int); + method public android.bluetooth.le.ScanSettings.Builder setNumOfMatches(int); method public android.bluetooth.le.ScanSettings.Builder setReportDelay(long); method public android.bluetooth.le.ScanSettings.Builder setScanMode(int); } |