summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Lockwood <lockwood%android.com@gtempaccount.com>2011-08-04 07:52:14 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2011-08-04 07:52:14 -0700
commit20013279f3dacec0b1d6c2844213d762b469cf98 (patch)
treec7cc1e5cc4e0320bdb166bad4f1b0bed66c595f5
parentd9f2f74e1939eb268ec557171149375f220628d2 (diff)
parent4306ca7d446c26752ecd9f724590487d68a27f10 (diff)
downloadlibhardware-20013279f3dacec0b1d6c2844213d762b469cf98.tar.gz
am 4306ca7d: Merge "GPS: added update_network_availability to AGpsRilInterface"
* commit '4306ca7d446c26752ecd9f724590487d68a27f10': GPS: added update_network_availability to AGpsRilInterface
-rw-r--r--include/hardware/gps.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/hardware/gps.h b/include/hardware/gps.h
index 89ad8368..7c3be18f 100644
--- a/include/hardware/gps.h
+++ b/include/hardware/gps.h
@@ -659,6 +659,12 @@ typedef struct {
* These parameters match values in the android.net.NetworkInfo class.
*/
void (*update_network_state) (int connected, int type, int roaming, const char* extra_info);
+
+ /**
+ * Notify GPS of network status changes.
+ * These parameters match values in the android.net.NetworkInfo class.
+ */
+ void (*update_network_availability) (int avaiable, const char* apn);
} AGpsRilInterface;
__END_DECLS