mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
This switches FileManager from being behind an Arc<Mutex<FileManager>>> to just FileManager. This saves us the Arc and Mutex and the compiler makes sure that we do not have Race Conditions. FileManager is already easily cloneable because it consist of store: Arc<> and GenericEmbedderProxy. Testing: Compilation and unit tests are the tests. Signed-off-by: Narfinger <Narfinger@users.noreply.github.com>