| 844 | }; |
| 845 | |
| 846 | Status RegisterFileSystemFactory(std::string scheme, FileSystemFactory factory, |
| 847 | std::function<void()> finalizer) { |
| 848 | return FileSystemFactoryRegistry::GetInstance()->RegisterFactory( |
| 849 | std::move(scheme), factory, std::move(finalizer), |
| 850 | /*defer_error=*/false); |
| 851 | } |
| 852 | |
| 853 | void EnsureFinalized() { FileSystemFactoryRegistry::GetInstance()->EnsureFinalized(); } |
| 854 |
no test coverage detected