| 227 | } |
| 228 | |
| 229 | void Configurations::setFromBase(Configurations* base) { |
| 230 | if (base == nullptr || base == this) { |
| 231 | return; |
| 232 | } |
| 233 | base::threading::ScopedLock scopedLock(base->lock()); |
| 234 | for (Configuration*& conf : base->list()) { |
| 235 | set(conf); |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | bool Configurations::hasConfiguration(ConfigurationType configurationType) { |
| 240 | base::type::EnumType lIndex = LevelHelper::kMinValid; |
no test coverage detected