summaryrefslogtreecommitdiff
path: root/core/SystemStatusOsObserver.h
diff options
context:
space:
mode:
authorMadhanraj Chelladurai <mchellad@codeaurora.org>2018-09-07 14:32:15 +0530
committerGerrit - the friendly Code Review server <code-review@localhost>2018-09-17 11:27:39 -0700
commit2ed4407e7c3e31801b55937008691a07908c4673 (patch)
treedc756ce872b357203f36efaa2e24500c457ca580 /core/SystemStatusOsObserver.h
parent4140f7235eb040601e7037891b7d26970b1e7535 (diff)
downloadgps-2ed4407e7c3e31801b55937008691a07908c4673.tar.gz
gps: use common compilation flag for the same functionality
modify the compilation flag to be in alignment with the location services library Change-Id: Ie65e6e803c50524c0913b1475edbf556a5b7f207 CRs-Fixed: 2299356
Diffstat (limited to 'core/SystemStatusOsObserver.h')
-rw-r--r--core/SystemStatusOsObserver.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/SystemStatusOsObserver.h b/core/SystemStatusOsObserver.h
index fd60606..8710976 100644
--- a/core/SystemStatusOsObserver.h
+++ b/core/SystemStatusOsObserver.h
@@ -84,7 +84,7 @@ public:
mSystemStatus(systemstatus), mContext(msgTask, this),
mAddress("SystemStatusOsObserver"),
mClientToDataItems(MAX_DATA_ITEM_ID), mDataItemToClients(MAX_DATA_ITEM_ID)
-#ifdef USE_GLIB
+#ifdef USE_QCMAP
, mBackHaulConnectReqCount(0)
#endif
{
@@ -106,7 +106,7 @@ public:
// To set the framework action request object
inline void setFrameworkActionReqObj(IFrameworkActionReq* frameworkActionReqObj) {
mContext.mFrameworkActionReqObj = frameworkActionReqObj;
-#ifdef USE_GLIB
+#ifdef USE_QCMAP
if (mBackHaulConnectReqCount > 0) {
connectBackhaul();
mBackHaulConnectReqCount = 0;
@@ -134,7 +134,7 @@ public:
// IFrameworkActionReq Overrides
virtual void turnOn(DataItemId dit, int timeOut = 0) override;
virtual void turnOff(DataItemId dit) override;
-#ifdef USE_GLIB
+#ifdef USE_QCMAP
virtual bool connectBackhaul() override;
virtual bool disconnectBackhaul();
#endif
@@ -151,7 +151,7 @@ private:
// Cache the subscribe and requestData till subscription obj is obtained
void cacheObserverRequest(ObserverReqCache& reqCache,
const list<DataItemId>& l, IDataItemObserver* client);
-#ifdef USE_GLIB
+#ifdef USE_QCMAP
// Cache the framework action request for connect/disconnect
int mBackHaulConnectReqCount;
#endif