| 30 | } |
| 31 | |
| 32 | bool Preferences::hasInt64(const std::string& key) const { |
| 33 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 34 | return preferences.hasInt64(bundle_key); |
| 35 | } |
| 36 | |
| 37 | bool Preferences::hasString(const std::string& key) const { |
| 38 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected