| 70 | } |
| 71 | |
| 72 | void Preferences::putInt64(const std::string& key, int64_t value) { |
| 73 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 74 | return preferences.putInt64(bundle_key, value); |
| 75 | } |
| 76 | |
| 77 | void Preferences::putString(const std::string& key, const std::string& value) { |
| 78 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected