Change prototype of getWwanZppFix API
No need for return value as it will be handled asynchronously. CRs-Fixed: 2250516 Change-Id: I7c3ce33cb61688a8cb206c397a69bf192c92beb1
This commit is contained in:
parent
98edc19bea
commit
0344cc7901
2 changed files with 4 additions and 6 deletions
|
@ -576,9 +576,9 @@ DEFAULT_IMPL(0)
|
|||
GnssConfigLppeUserPlaneMask LocApiBase::convertLppeUp(const uint32_t /*lppeUserPlaneMask*/)
|
||||
DEFAULT_IMPL(0)
|
||||
|
||||
enum loc_api_adapter_err LocApiBase::
|
||||
void LocApiBase::
|
||||
getWwanZppFix()
|
||||
DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
|
||||
DEFAULT_IMPL()
|
||||
|
||||
void LocApiBase::
|
||||
getBestAvailableZppFix()
|
||||
|
|
|
@ -235,10 +235,8 @@ public:
|
|||
virtual GnssConfigLppeControlPlaneMask convertLppeCp(const uint32_t lppeControlPlaneMask);
|
||||
virtual GnssConfigLppeUserPlaneMask convertLppeUp(const uint32_t lppeUserPlaneMask);
|
||||
|
||||
virtual enum loc_api_adapter_err
|
||||
getWwanZppFix();
|
||||
virtual void
|
||||
getBestAvailableZppFix();
|
||||
virtual void getWwanZppFix();
|
||||
virtual void getBestAvailableZppFix();
|
||||
virtual int initDataServiceClient(bool isDueToSsr);
|
||||
virtual int openAndStartDataCall();
|
||||
virtual void stopDataCall();
|
||||
|
|
Loading…
Reference in a new issue