| 151 | } |
| 152 | |
| 153 | BundleInitializer ResourceManager::registerBundle(const StringBox& bundleName) { |
| 154 | auto bundle = makeShared<Bundle>(bundleName, _logger); |
| 155 | _bundleByName[bundleName] = bundle; |
| 156 | |
| 157 | return bundle->prepareForInit(); |
| 158 | } |
| 159 | |
| 160 | void ResourceManager::initializeBundle(BundleInitializer& bundleInitializer, Ref<ValdiModuleArchive> moduleArchive) { |
| 161 | static auto kDownloadManifestName = STRING_LITERAL("download_manifest"); |
nothing calls this directly
no test coverage detected