diff options
author | Eric Shienbrood <> | 2009-04-14 15:40:20 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-04-14 15:40:20 -0700 |
commit | 2ecc74f330959be0a3bde10e55110a8218c0887c (patch) | |
tree | cd595c05975bd08132ab9c8b2e87af6316c372d3 /wifi | |
parent | 810ec50a1e2c92c866a271c3597ec257688c0d82 (diff) | |
download | frameworks_base-2ecc74f330959be0a3bde10e55110a8218c0887c.zip frameworks_base-2ecc74f330959be0a3bde10e55110a8218c0887c.tar.gz frameworks_base-2ecc74f330959be0a3bde10e55110a8218c0887c.tar.bz2 |
AI 146222: Manual merge of 145980 from donutburger => master.
Automated import of CL 146222
Diffstat (limited to 'wifi')
-rw-r--r-- | wifi/java/android/net/wifi/WifiManager.java | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/wifi/java/android/net/wifi/WifiManager.java b/wifi/java/android/net/wifi/WifiManager.java index 483e0fa..a51e88f 100644 --- a/wifi/java/android/net/wifi/WifiManager.java +++ b/wifi/java/android/net/wifi/WifiManager.java @@ -226,23 +226,21 @@ public class WifiManager { public static final String ACTION_PICK_WIFI_NETWORK = "android.net.wifi.PICK_WIFI_NETWORK"; /** - * In this mode, Wi-Fi will be kept active, + * In this Wi-Fi lock mode, Wi-Fi will be kept active, * and will behave normally, i.e., it will attempt to automatically * establish a connection to a remembered access point that is * within range, and will do periodic scans if there are remembered * access points but none are in range. - * @hide pending API council review */ public static final int WIFI_MODE_FULL = 1; /** - * In this mode, Wi-Fi will be kept active, + * In this Wi-Fi lock mode, Wi-Fi will be kept active, * but the only operation that will be supported is initiation of * scans, and the subsequent reporting of scan results. No attempts * will be made to automatically connect to remembered access points, * nor will periodic scans be automatically performed looking for * remembered access points. Scans must be explicitly requested by * an application in this mode. - * @hide pending API council review */ public static final int WIFI_MODE_SCAN_ONLY = 2; @@ -805,8 +803,6 @@ public class WifiManager { * @return a new, unacquired WifiLock with the given tag. * * @see WifiLock - * - * @hide pending API council review */ public WifiLock createWifiLock(int lockType, String tag) { return new WifiLock(lockType, tag); |