diff options
| author | 2019-03-07 04:48:02 +0000 | |
|---|---|---|
| committer | 2019-03-07 04:48:02 +0000 | |
| commit | 1cc1db0ab2b6277fc6decf2ece0e1b2ff484bf71 (patch) | |
| tree | 4d3b42eacef41f3c3b8665fbd06013096b7f8c1c /location/java | |
| parent | a3db17a4906d6bce2a4e96f6b532a2b59b8c5b08 (diff) | |
| parent | d08180c49f0244f1979219c581683ca7ada0ac06 (diff) | |
Merge "Remove unused broadcasts from GNSS"
Diffstat (limited to 'location/java')
| -rw-r--r-- | location/java/android/location/LocationManager.java | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/location/java/android/location/LocationManager.java b/location/java/android/location/LocationManager.java index 8af153283d70..db6a4d02b04e 100644 --- a/location/java/android/location/LocationManager.java +++ b/location/java/android/location/LocationManager.java @@ -166,17 +166,6 @@ public class LocationManager { public static final String KEY_LOCATION_CHANGED = "location"; /** - * Broadcast intent action indicating that the GPS has either been - * enabled or disabled. An intent extra provides this state as a boolean, - * where {@code true} means enabled. - * @see #EXTRA_GPS_ENABLED - * - * @hide - */ - public static final String GPS_ENABLED_CHANGE_ACTION = - "android.location.GPS_ENABLED_CHANGE"; - - /** * Broadcast intent action when the set of enabled location providers changes. To check the * status of a provider, use {@link #isProviderEnabled(String)}. */ @@ -202,26 +191,6 @@ public class LocationManager { public static final String MODE_CHANGING_ACTION = "com.android.settings.location.MODE_CHANGING"; /** - * Broadcast intent action indicating that the GPS has either started or - * stopped receiving GPS fixes. An intent extra provides this state as a - * boolean, where {@code true} means that the GPS is actively receiving fixes. - * @see #EXTRA_GPS_ENABLED - * - * @hide - */ - public static final String GPS_FIX_CHANGE_ACTION = - "android.location.GPS_FIX_CHANGE"; - - /** - * The lookup key for a boolean that indicates whether GPS is enabled or - * disabled. {@code true} means GPS is enabled. Retrieve it with - * {@link android.content.Intent#getBooleanExtra(String,boolean)}. - * - * @hide - */ - public static final String EXTRA_GPS_ENABLED = "enabled"; - - /** * Broadcast intent action indicating that a high power location requests * has either started or stopped being active. The current state of * active location requests should be read from AppOpsManager using |