diff options
-rw-r--r-- | core/java/android/net/Proxy.java | 2 | ||||
-rw-r--r-- | core/java/android/provider/Settings.java | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/net/Proxy.java b/core/java/android/net/Proxy.java index 370b755..23b591c 100644 --- a/core/java/android/net/Proxy.java +++ b/core/java/android/net/Proxy.java @@ -105,6 +105,7 @@ final public class Proxy { * name it returns the default host. A null value means that no * host is to be used. * WIFI addition by Revoked test + * @hide */ static final public String getWifiHost(Context ctx) { ContentResolver contentResolver = ctx.getContentResolver(); @@ -130,6 +131,7 @@ final public class Proxy { * @param ctx A Context used to get the settings for the proxy port. * @return The port number to use or -1 if no proxy is to be used. * WIFI addition by Revoked test + * @hide */ static final public int getWifiPort(Context ctx) { ContentResolver contentResolver = ctx.getContentResolver(); diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 9e31905..12c5f7f 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2861,6 +2861,7 @@ public final class Settings { public static final String HTTP_PROXY_WIFI_ON = "http_proxy_wifi_on"; /** * Initialise necessary variables for wifi proxy support. + * @hide */ public static final String HTTP_PROXY_WIFI = "http_proxy_wifi"; |