Wyatt Riley | ad03ab2 | 2016-12-14 14:54:29 -0800 | [diff] [blame] | 1 | #include "GnssBatching.h" |
| 2 | |
| 3 | namespace android { |
| 4 | namespace hardware { |
| 5 | namespace gnss { |
| 6 | namespace V1_0 { |
| 7 | namespace implementation { |
| 8 | |
| 9 | GnssBatching::GnssBatching(const FlpLocationInterface* flpLocationIface) : |
| 10 | mFlpLocationIface(flpLocationIface) {} |
| 11 | |
| 12 | |
| 13 | // Methods from ::android::hardware::gnss::V1_0::IGnssBatching follow. |
| 14 | Return<bool> GnssBatching::init(const sp<IGnssBatchingCallback>& callback) { |
| 15 | // TODO(b/34133439) implement |
| 16 | return false; |
| 17 | } |
| 18 | |
| 19 | Return<uint16_t> GnssBatching::getBatchSize() { |
| 20 | // TODO(b/34133439) implement |
| 21 | return 0; |
| 22 | } |
| 23 | |
| 24 | Return<bool> GnssBatching::start(const IGnssBatching::Options& options) { |
| 25 | // TODO(b/34133439) implement |
| 26 | return false; |
| 27 | } |
| 28 | |
| 29 | Return<void> GnssBatching::flush() { |
| 30 | // TODO(b/34133439) implement |
| 31 | return Void(); |
| 32 | } |
| 33 | |
| 34 | Return<bool> GnssBatching::stop() { |
| 35 | // TODO(b/34133439) implement |
| 36 | return false; |
| 37 | } |
| 38 | |
| 39 | Return<void> GnssBatching::cleanup() { |
| 40 | // TODO(b/34133439) implement |
| 41 | return Void(); |
| 42 | } |
| 43 | |
| 44 | } // namespace implementation |
| 45 | } // namespace V1_0 |
| 46 | } // namespace gnss |
| 47 | } // namespace hardware |
| 48 | } // namespace android |