diff options
author | Bhavna Sharma <sbhavna@codeaurora.org> | 2018-01-22 16:04:50 -0800 |
---|---|---|
committer | Bhavna Sharma <sbhavna@codeaurora.org> | 2018-04-27 10:39:21 -0700 |
commit | f6b613a82760441f1257455256bba5dd9f3c2919 (patch) | |
tree | d9a07a4da34b643440bf124c4a7b4a7e872dcd66 /core/LocAdapterBase.cpp | |
parent | 94904a7184b068ff5f62999cc125e5f62bd3f93e (diff) |
Addition of new LocApi thread
1. LocApiBase to create its own MsgTask thread to allow QMI calls
to be made asynchronously. It shall no longer share the adapter's thread.
2. Implementation of new LocApiResponse classes for generic response type
from LocApi layer to Adapter layers
3. GnssAdapter modified to handle the asynchronous nature of LocApi calls.
CRs-Fixed: 2218658
Change-Id: I6e401a89f16791ec144763ac5f070b7ee1dad931
Diffstat (limited to 'core/LocAdapterBase.cpp')
-rw-r--r-- | core/LocAdapterBase.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/LocAdapterBase.cpp b/core/LocAdapterBase.cpp index 5d1b2c2..5531fa2 100644 --- a/core/LocAdapterBase.cpp +++ b/core/LocAdapterBase.cpp @@ -162,4 +162,10 @@ bool LocAdapterBase:: reportWwanZppFix(LocGpsLocation &/*zppLoc*/) DEFAULT_IMPL(false) +bool LocAdapterBase:: + reportZppBestAvailableFix(LocGpsLocation& /*zppLoc*/, + GpsLocationExtended& /*location_extended*/, LocPosTechMask /*tech_mask*/) +DEFAULT_IMPL(false) + + } // namespace loc_core |