| 233 | } |
| 234 | |
| 235 | void Bundle::setResourceContent(const StringBox& path, const BundleResourceContent& resourceContent) { |
| 236 | std::lock_guard<std::recursive_mutex> guard(_mutex); |
| 237 | _resourceContentByPath[path] = resourceContent; |
| 238 | } |
| 239 | |
| 240 | Result<Ref<CSSDocument>> Bundle::getCSSDocument(const StringBox& path, AttributeIds& attributeIds) { |
| 241 | std::lock_guard<std::recursive_mutex> guard(_mutex); |
no outgoing calls
no test coverage detected