diff options
Diffstat (limited to 'core/java/android/provider/Settings.java')
-rw-r--r-- | core/java/android/provider/Settings.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 02c90b4..0ff1976 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2565,6 +2565,14 @@ public final class Settings { "wifi_networks_available_repeat_delay"; /** + * Whether to nofity the user of WiMAX network. + * If WiMAX is connected or disconnected, we will put this notification up. + * @hide + */ + public static final String WIMAX_NETWORKS_AVAILABLE_NOTIFICATION_ON = + "wimax_networks_available_notification_on"; + + /** * The number of radio channels that are allowed in the local * 802.11 regulatory domain. * @hide @@ -2701,6 +2709,12 @@ public final class Settings { "wifi_mobile_data_transition_wakelock_timeout_ms"; /** + * Whether the Wimax should be on. Only the WiMAX service should touch this. + * @hide + */ + public static final String WIMAX_ON = "wimax_on"; + + /** * Whether background data usage is allowed by the user. See * ConnectivityManager for more info. */ |