You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
337 B
12 lines
337 B
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(); |
|
};
|
|
|