40d3a9bd8c
Bug: 36453077 Test: mma Change-Id: I0b1f77dfae5d2258969e33d85ecf45401ffbdfaa
12 lines
337 B
Text
12 lines
337 B
Text
package android.hardware.gnss@1.0;
|
|
|
|
/**
|
|
* This interface is used by the GNSS HAL to request download of XTRA data.
|
|
*/
|
|
interface IGnssXtraCallback {
|
|
/**
|
|
* Callback to request the client to download XTRA data. The client should
|
|
* download XTRA data and inject it by calling injectXtraData().
|
|
*/
|
|
downloadRequestCb();
|
|
};
|