Fix NI Request Event
GnssAdatper::requestNiNotifyEvent function is not overriding LocAdatperBase::requestNiNotigyEvent because of slightly different parameters Change-Id: Ib3e6b562c437e47fba2a086d47c887f2efce7637 CRs-fixed: 2027710
This commit is contained in:
parent
905d69ef10
commit
36f8446032
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ bool LocAdapterBase::
|
||||||
DEFAULT_IMPL(false)
|
DEFAULT_IMPL(false)
|
||||||
|
|
||||||
bool LocAdapterBase::
|
bool LocAdapterBase::
|
||||||
requestNiNotifyEvent(GnssNiNotification ¬ify, const void* data)
|
requestNiNotifyEvent(const GnssNiNotification ¬ify, const void* data)
|
||||||
DEFAULT_IMPL(false)
|
DEFAULT_IMPL(false)
|
||||||
|
|
||||||
void LocAdapterBase::
|
void LocAdapterBase::
|
||||||
|
|
|
@ -147,7 +147,7 @@ public:
|
||||||
virtual bool requestSuplES(int connHandle);
|
virtual bool requestSuplES(int connHandle);
|
||||||
virtual bool reportDataCallOpened();
|
virtual bool reportDataCallOpened();
|
||||||
virtual bool reportDataCallClosed();
|
virtual bool reportDataCallClosed();
|
||||||
virtual bool requestNiNotifyEvent(GnssNiNotification ¬ify, const void* data);
|
virtual bool requestNiNotifyEvent(const GnssNiNotification ¬ify, const void* data);
|
||||||
inline virtual bool isInSession() { return false; }
|
inline virtual bool isInSession() { return false; }
|
||||||
ContextBase* getContext() const { return mContext; }
|
ContextBase* getContext() const { return mContext; }
|
||||||
virtual void reportGnssMeasurementDataEvent(const GnssMeasurementsNotification& measurementsNotify);
|
virtual void reportGnssMeasurementDataEvent(const GnssMeasurementsNotification& measurementsNotify);
|
||||||
|
|
Loading…
Reference in a new issue