summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorYuhao Zheng <yuhaozheng@google.com>2014-03-25 15:00:45 -0700
committerYuhao Zheng <yuhaozheng@google.com>2014-03-25 15:00:45 -0700
commit10bf6354a536152719bf4524429aa5739836c541 (patch)
treeee0d72a8257a59bb84835d30dde674a08c9c571b /api
parentf53d1a01972d04402b48476d6a8173285516edd3 (diff)
downloadframeworks_base-10bf6354a536152719bf4524429aa5739836c541.zip
frameworks_base-10bf6354a536152719bf4524429aa5739836c541.tar.gz
frameworks_base-10bf6354a536152719bf4524429aa5739836c541.tar.bz2
Wifi hotspot stack initial hook up
Add a dummy wifi hotspot service for futher development use. This is to resolve the different between master branch and kwd branch, such that future development can go into kwd and being auto-merged to master. bug: 5485670 Change-Id: Ica58de445dd050a9f0b817f8e4accaa2478299c5
Diffstat (limited to 'api')
-rw-r--r--api/current.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt
index 97c1c74..5a568a0 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -6375,6 +6375,7 @@ package android.content {
field public static final java.lang.String USER_SERVICE = "user";
field public static final java.lang.String VIBRATOR_SERVICE = "vibrator";
field public static final java.lang.String WALLPAPER_SERVICE = "wallpaper";
+ field public static final java.lang.String WIFI_HOTSPOT_SERVICE = "wifihotspot";
field public static final java.lang.String WIFI_P2P_SERVICE = "wifip2p";
field public static final java.lang.String WIFI_SERVICE = "wifi";
field public static final java.lang.String WINDOW_SERVICE = "window";
@@ -16066,6 +16067,19 @@ package android.net.wifi {
}
+package android.net.wifi.hotspot {
+
+ public abstract interface IWifiHotspotManager implements android.os.IInterface {
+ method public abstract void test() throws android.os.RemoteException;
+ }
+
+ public class WifiHotspotManager {
+ ctor public WifiHotspotManager(android.content.Context, android.net.wifi.hotspot.IWifiHotspotManager);
+ method public void test();
+ }
+
+}
+
package android.net.wifi.p2p {
public class WifiP2pConfig implements android.os.Parcelable {