| 60 | } |
| 61 | |
| 62 | void Preferences::putBool(const std::string& key, bool value) { |
| 63 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 64 | return preferences.putBool(bundle_key, value); |
| 65 | } |
| 66 | |
| 67 | void Preferences::putInt32(const std::string& key, int32_t value) { |
| 68 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected