| 29 | namespace comm { |
| 30 | |
| 31 | void CommSecureStore::set(const std::string key, const std::string value) { |
| 32 | NativeAndroidAccessProvider::runTask( |
| 33 | [=]() { CommSecureStoreJavaClass::set(key, value); }); |
| 34 | } |
| 35 | |
| 36 | folly::Optional<std::string> CommSecureStore::get(const std::string key) { |
| 37 | folly::Optional<std::string> value; |
no test coverage detected