Remove WifiManager#get/setFrequencyBand
am: 79ec1736be
Change-Id: I9b5b298fc3e47e77a59701e7f9d4dc18680f12b8
This commit is contained in:
@@ -97,10 +97,6 @@ interface IWifiManager
|
||||
|
||||
String getCountryCode();
|
||||
|
||||
void setFrequencyBand(int band, boolean persist);
|
||||
|
||||
int getFrequencyBand();
|
||||
|
||||
boolean isDualBandSupported();
|
||||
|
||||
boolean saveConfiguration();
|
||||
|
||||
@@ -1375,40 +1375,6 @@ public class WifiManager {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the operational frequency band.
|
||||
* @param band One of
|
||||
* {@link #WIFI_FREQUENCY_BAND_AUTO},
|
||||
* {@link #WIFI_FREQUENCY_BAND_5GHZ},
|
||||
* {@link #WIFI_FREQUENCY_BAND_2GHZ},
|
||||
* @param persist {@code true} if this needs to be remembered
|
||||
* @hide
|
||||
*/
|
||||
public void setFrequencyBand(int band, boolean persist) {
|
||||
try {
|
||||
mService.setFrequencyBand(band, persist);
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the operational frequency band.
|
||||
* @return One of
|
||||
* {@link #WIFI_FREQUENCY_BAND_AUTO},
|
||||
* {@link #WIFI_FREQUENCY_BAND_5GHZ},
|
||||
* {@link #WIFI_FREQUENCY_BAND_2GHZ} or
|
||||
* {@code -1} on failure.
|
||||
* @hide
|
||||
*/
|
||||
public int getFrequencyBand() {
|
||||
try {
|
||||
return mService.getFrequencyBand();
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the chipset supports dual frequency band (2.4 GHz and 5 GHz)
|
||||
* @return {@code true} if supported, {@code false} otherwise.
|
||||
|
||||
Reference in New Issue
Block a user