summaryrefslogtreecommitdiffstats
path: root/location
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@android.com>2010-08-27 16:10:06 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-08-27 16:10:06 -0700
commitd71021cb30bd20dabd6783f4235d5f245a7bd1a3 (patch)
tree54d69a563b72868911f5370c2a6d043618d5276a /location
parentaf610b2b9fbf6a7e5e03d3d8bce2f4e082d21048 (diff)
parent0c731f99b05630e16dce572ac206ab75c90891cd (diff)
downloadframeworks_base-d71021cb30bd20dabd6783f4235d5f245a7bd1a3.zip
frameworks_base-d71021cb30bd20dabd6783f4235d5f245a7bd1a3.tar.gz
frameworks_base-d71021cb30bd20dabd6783f4235d5f245a7bd1a3.tar.bz2
am 0c731f99: Merge "Send broadcast intent when configured location providers change." into gingerbread
Merge commit '0c731f99b05630e16dce572ac206ab75c90891cd' into gingerbread-plus-aosp * commit '0c731f99b05630e16dce572ac206ab75c90891cd': Send broadcast intent when configured location providers change.
Diffstat (limited to 'location')
-rw-r--r--location/java/android/location/LocationManager.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/location/java/android/location/LocationManager.java b/location/java/android/location/LocationManager.java
index 9ceda7e..9aa84a03 100644
--- a/location/java/android/location/LocationManager.java
+++ b/location/java/android/location/LocationManager.java
@@ -127,6 +127,13 @@ public class LocationManager {
"android.location.GPS_ENABLED_CHANGE";
/**
+ * Broadcast intent action when the configured location providers
+ * change.
+ */
+ public static final String PROVIDERS_CHANGED_ACTION =
+ "android.location.PROVIDERS_CHANGED";
+
+ /**
* 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.